<!-- 

if (document.images) {

	// 設定開始（使用する画像を設定してください）

	// 画像1
	var top1on = new Image();
	top1on.src = "http://www.suikouen.net/images/navirun_02.jpg"; // ポイント時の画像
	var top1off = new Image();
	top1off.src = "http://www.suikouen.net/images/navirun_01.jpg"; // 通常の画像

	// 画像2
	var top2on = new Image();
	top2on.src = "http://www.suikouen.net/images/navirun_04.jpg";
	var top2off = new Image();
	top2off.src = "http://www.suikouen.net/images/navirun_03.jpg";


	// 設定終了

}

// ポイント時の処理
function On(name) {

	if (document.images) {

		document.images[name].src = eval(name + 'on.src');

	}

}

// 放した時の処理
function Off(name) {

	if (document.images) {

		document.images[name].src = eval(name + 'off.src');

	}

}

// -->


