/*
ロールオーバースクリプト IE6作動
画像ファイル名に_onをつけて、imgタグにclass-"btn"で反応
*/

$(function(){
	$("img.btn").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
	})
})

