jQuery(document).ready(function() {
	jQuery("table.productdetails tr:even").addClass("even");
	jQuery("table.productdetails tr:odd").addClass("odd"); //This is not required - you can avoid this if you have a table background
	jQuery("table.productdetails tr").hover(function(){
		jQuery(this).addClass("hovcolor");
	}, function(){
		jQuery(this).removeClass("hovcolor");
	});
	jQuery("table.productdetails tr").click(function(){
			//jQuery("table.tablecolors tr").removeClass("highlightcolor"); // Remove this line if you dont want to de-highlight the previously highlighted row
			jQuery(this).toggleClass("highlightcolor");
	});
});


