/*==============================================
	Swap image Module
==============================================*/
$(function(){
	var imgcache=new Object();
	$(".swap").not("[src*='_ovr.']").each(function(i){
		var imgsrc=this.src;
		var dot=this.src.lastIndexOf('.');
		var imgovr=this.src.substr(0,dot)+'_ovr'+this.src.substr(dot,4);
		imgcache[this.src]=new Image();
		imgcache[this.src].src=imgovr;
		$(this).hover(function(){
			this.src=imgovr;
		},function(){
			this.src=imgsrc;
		});
	});
});

