////////////////////////////////////////////////
//スワップイメージ
////////////////////////////////////////////////

$(function(){
  $(".hover").hover(function(){
	var cont = $(this).attr("src");
	if ((/\d\.(jpg|gif|png)/).test(cont)){
	cont = cont.replace(/(\.)(jpg|gif|png)/,"_over.$2");	
	}else{
	cont = cont.replace(/(\.)(jpg|gif|png)/,"_over.$2");
	}
	$(this).attr("src",cont)
}, function(){
	var cont = $(this).attr("src");
	cont = cont.replace(/(_over|_over)\./,".");
	$(this).attr("src",cont)
}); 
});
