﻿$(function(){
	/* ロールオーバーによる画像入れ替え */
	$('.rollover').each(function(){
		// srcセット
		var rolloverSrc = $(this).attr('src').replace(/(\.gif|\.jpg|\.png)$/, "_on"+"$1");
		// イメージセット
		$(this).mouseover(function(){
			$(this).hide().next().show();
		})
		.clone().insertAfter(this).attr('src',rolloverSrc).hide().mouseout(function(){
			$(this).hide().prev().show();
		});
	});
});
