$(document).ready(function(){
		$('.hoverImg').hover(
			function(){
			$(this).attr("src", $(this).attr("src").split(".").join("_hover."));
			}, function() {
			$(this).attr("src", $(this).attr("src").split("_hover.").join("."));
			}
			);
		});
