(function($) {
    $.fn.customRowOver = function(f, en, ou){
        var t = $(this);        
        
        $('tbody tr:not(.no)', $(this)).each(function(i){
            $(this).bind('mouseenter',function(){                
                if (!$(this).hasClass('tr_selected')) $(this).addClass('tr_over');
                if ( typeof(en) != 'undefined') en($(this));
            }).bind('mouseleave', function(){                
                if ( typeof(en) != 'undefined') ou($(this));
                /*if (!$(this).hasClass('tr_selected')) */$('tr.tr_over', t).removeClass('tr_over');                
            });
            /*
            $(this).bind('click', function(){
                $('#'+t.attr('id')+' tr.tr_selected').removeClass('tr_selected');
                $(this).addClass('tr_selected');
            });
           */
           if ( typeof(f) != 'undefined') $(this).bind('click', f);
        });    
    };
})(jQuery);
