var $j = jQuery.noConflict();
$j(document).ready(function() {

    $j('table.hoverhighlight tr td').parent('tr').hover(
 		function() {
 		    $j(this).css("background-color", "#f8f5ef");
 		},
 		function() {
 		    $j(this).css("background-color", "transparent");
 		}
 	)

})