/*
	Image Rollover
	@author: All Web Promotion, Inc. / a.w.s.
	@date: 2008
*/

(function(C){C.fn.rollover=function(D){var F={overSuffix:"-over"};var E=C.extend(F,D);$$=C(this);if(E.overAttr){C(window).bind("load",function(){$$.each(function(G,H){C("<img>").attr("src",C(this).attr(E.overAttr));});});this.each(function(){C(this).hover(function(){var G=C(this);var H=G.attr("src");G.attr("src",G.attr(E.overAttr)).attr(E.overAttr,H);},function(){var G=C(this);var H=G.attr("src");G.attr("src",G.attr(E.overAttr)).attr(E.overAttr,H);});});}else{C(window).bind("load",function(){$$.each(function(G,H){C("<img>").attr("src",A(C(this).attr("src"),E.overSuffix));});});this.each(function(){C(this).hover(function(){C(this).attr("src",A(C(this).attr("src"),E.overSuffix));},function(){C(this).attr("src",B(C(this).attr("src"),E.overSuffix));});});}return C(this);};function B(E,D){return E.replace(/-over\./,".");}function A(E,D){return E.substring(0,E.search(/(\.[a-z]+)$/))+D+E.match(/(\.[a-z]+)$/)[0];}})(jQuery);
