$(document).ready(function() {
//$('.tr_over tr:gt(1)').hover(
$('.tr_hover tbody > tr').hover(
function (){tmp_tr_css=$(this).css('background-color');$(this).css({'background-color':'#FFCC66'})}
,function (){$(this).css({'background-color':tmp_tr_css})}
);
});