(function($){
    $.fn.rollover = function(options){
        return this.each(function(){
            setTimeout('5000');
            $(this).css('cursor','pointer');
            
            $(this).mouseenter(function(){
                pic = $(this).attr('src');
                var picFile = pic.substr(0, pic.indexOf('.png'));
                $(this).attr('src', picFile+'-over.png');
            }).mouseleave(function(){
                $(this).attr('src', pic)
            });
        });
    };
})(jQuery);

 
