$(document).ready( function(){


$("table.data2 tbody tr").hover(
function(){
	$(this).css("background-color","#F1F1F1");
},
function(){
	$(this).css("background-color","#fff");
}

);

});
