$(function(){
	// マウスオーバー時（○○○.拡張子 → ○○○_on.拡張子 に置き換え）
	$("img.rollover").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));

	// マウスアウト時（○○○_on.拡張子 → ○○○.拡張子 に置き換え）
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));

	// _on画像の先読み（内部的に置き換えの処理をしておく）
	}).each(function(){
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
	});
});
