(function(jQuery){  
    
    jQuery.fn.simpleRollOver = function( ) {
        this.each(function(){
            jQuery(this).hover(function(e) {
                jQuery(this).attr( "src", jQuery(this).attr( "src" ).replace('_off', '_on' ));
            }, function() {
                jQuery(this).attr( "src", jQuery(this).attr( "src" ).replace( '_on', '_off' ));
            });            
        });
    }

})(jQuery);
