﻿(function($){$.fn.autoMouseOver=function(c){c=$.extend({outStr:"-out.",overStr:"-over."},c||{});var d=new Array();$(this).filter("img").each(function(){var a=$(this).attr("src").replace(c.outStr,c.overStr);var b=new Image();b.src=a;d.push(b)});$(this).filter("img").hover(function(){$(this).attr("src",$(this).attr("src").replace(c.outStr,c.overStr))},function(){$(this).attr("src",$(this).attr("src").replace(c.overStr,c.outStr))});return $}})(jQuery);
