


jQuery(document).ready(function() {
  

		$(".spectable tr:odd").css({backgroundColor: "#e5e5e5"});	
		$(".spectable tr:even").css({backgroundColor: "#f1f1f1"});

								
  $(".spectable tr:odd").hover(
						   
	   function () {
      $(this).css({backgroundColor: "#cccccc"});
						   },
		function () {
      $(this).css({backgroundColor: "#e5e5e5"});
						   }				   
						   
    );
	

 $(".spectable tr:even").hover(
						   
	   function () {
      $(this).css({backgroundColor: "#cccccc"});
						   },
		function () {
      $(this).css({backgroundColor: "#f1f1f1"});
						   }				   
						   
    );
	
	
});	