jQuery(document).ready(function() {

jQuery("tr.clickJS").mouseover(function() {
		jQuery(this).css('background-image','url(/grey.png)');
		jQuery(this).css('cursor','pointer');
		jQuery(this).css('cursor','hand'); 
	}).mouseout(function() {
		jQuery(this).css('background-image','none');
		jQuery(this).css('cursor','default');
	}).click(function() {
		location.href=jQuery(this).attr("res");
	});

});

