/*
	Plugin Name: hovtive
	Plugin URL: http://www.t2-designing.com/blog/2010/08/31/450/
	Version: 2.1
	Licence: MIT License
	Author: Takashi Toyoshima
	Author URL: http://www.t2-designing.com/
*/
(function(f){f.fn.hovtive=function(a){a=f.extend({flag:false,over:"_over",down:"_down",stay:"_stay"},a);var d=a.flag?"mouseover mouseout mousedown mouseup":"mouseover mouseout",e=$(":first-child",this);e.live(d,function(i){var b=$(this).attr("src");switch(i.type){case "mouseover":b.indexOf(a.stay)==-1&&$(this).attr("src",b.replace(/.(png|gif|jpg)/,a.over+".$1"));break;case "mouseout":b.indexOf(a.stay)==-1&&$(this).attr("src",b.replace(/_[a-z]+.(png|gif|jpg)/,".$1"));break;case "mousedown":b.indexOf(a.stay)== -1&&$(this).attr("src",b.replace(RegExp(a.over+".(png|gif|jpg)"),a.down+".$1"));break;case "mouseup":b.indexOf(a.stay)==-1&&$(this).attr("src",b.replace(RegExp(a.down+".(png|gif|jpg)"),a.over+".$1"));break}});d=[];for(var g=e.length;g--;){var c=document.createElement("img"),h=$(e[g]).attr("src");$(c).attr("src",h.replace(/.(png|gif|jpg)/,a.over+".$1"));d.push(c);if(a.flag){c=document.createElement("img");$(c).attr("src",h.replace(/.(png|gif|jpg)/,a.down+".$1"));d.push(c)}}}})(jQuery);
