jQuery(document).ready(function(){

 $("#content table tr:even").css({backgroundColor: '#eeeeef'});
 $("#content table tr").hover(function(){
	$(this).find('td').css({backgroundColor: '#e4e4e5'});
 }, function(){
	$(this).find('td').css({backgroundColor: ''});
 });

});
