$(function(){
    $("#content table tr[class!='first'][class!='first_small_no_hr']").hover(
        function(){
            $(this).addClass('hover');
        },
        function(){
            $(this).removeClass('hover');
        }
    );
}); 