$(document).ready(function(){
    
        $("._sortable tr").mouseover(function(){
            $(this).addClass("rowCursor");
        });    
        $("._sortable tr").mouseout(function(){
            $(this).removeClass("rowCursor");
        });
    
});
