// ロールオーバー
$(function(){
	$("input.imgLink, img.imgLink").mouseover(function(){
		//$(this).attr("src", $(this).attr("src").replace(/^(.+)(¥.[a-z]+)$/, "$1_on$2"));
		$(this).attr("src", $(this).attr("src").replace(".", "_on."));
	}).mouseout(function(){
		//$(this).attr("src", $(this).attr("src").replace(/^(.+)_on(¥.[a-z]+)$/, "$1$2"));
		$(this).attr("src", $(this).attr("src").replace("_on.", "."));
	}).each(function(){
		$("<img>").attr("src", $(this).attr("src").replace(".", "_on."));
	});
});
