jQuery(function(){
	$(".img-swap").hover(
		function(){this.src = this.src.replace("_Normal","_Mouseover");},
		function(){this.src = this.src.replace("_Mouseover","_Normal")
	});
})
