(function($){

	$.fn.footerHover = function(options) {

		var defaults =
		{

		};

		var options = $.extend(defaults, options);

		return this.each( function() {
                    $(this).hover(function() {
                        filename = $(this).attr('src').split('.')[0];
                        ext = $(this).attr('src').split('.')[1];
                        $(this).attr("src",filename+"-over."+ext);
                    },
                    function() {
                        $(this).removeClass('footerHover');
                        filename = $(this).attr('src').split('-over')[0];
                        ext = $(this).attr('src').split('.')[1];
                        $(this).attr("src",filename+"."+ext);
                    });
		});
	};

})(jQuery);
