$(function(){
    $('table.js_tableHover tr:not(.js_notHoverAble)').hover(
        function(){
            $(this).addClass('hovered');
        },
        function(){
            $(this).removeClass('hovered');
        }
    )
    
})
