jQuery(function(){
	// ボタン画像系ロールオーバー
	// ⇒URL内に「/off/」が含まれている画像に対し、マウスオーバー時にURLを「/on/」に置換
	$("img")
		.hover(
			function () {
				if ($(this).attr("src").indexOf("/off/", 0) > -1) {
					$(this).attr("src", $(this).attr("src").replace("/off/", "/on/"));
				}
			},
			function () {
				if ($(this).attr("src").indexOf("/on/", 0) > -1) {
					$(this).attr("src", $(this).attr("src").replace("/on/", "/off/"));
				}
			}
		)
	;
	$("input")
		.hover(
			function () {
				if ($(this).attr("src").indexOf("/off/", 0) > -1) {
					$(this).attr("src", $(this).attr("src").replace("/off/", "/on/"));
				}
			},
			function () {
				if ($(this).attr("src").indexOf("/on/", 0) > -1) {
					$(this).attr("src", $(this).attr("src").replace("/on/", "/off/"));
				}
			}
		)
	;
});


