// JavaScript Document
jQuery(document).ready(function() {
	// Homepage Features
	jQuery("#features-list a").click(function() {
		var str = jQuery(this).attr("class");
		var substr = str.split(' ');
		if(substr.length == 1) { // is not current
			jQuery(".current").each(function() {
				jQuery(this).removeClass("current");
			});
			jQuery("."+substr[0]).each(function() {
				jQuery(this).addClass("current");
			});
		}
	});
	jQuery("tr:even").addClass("even");
});
