$(document).ready(function() {
	$('tr').hover(
		function (){$(this).css('backgroundColor','#88BB15')},
		function (){$(this).css('backgroundColor','white')
	});
});
