$(function(){
$("tr:not(:first-child)").mouseover(function(){
    $(this).addClass("hover");
}).mouseout(function(){
    $(this).removeClass("hover");
})
})

