if (document.images) {


// 設定開始（使用する画像を設定してください）

// 画像1
var img1on = new Image();
img1on.src="/images/gm_home_h.gif"; // ポイント時の画像
var img1off = new Image();
img1off.src="/images/gm_home.gif"; // 通常の画像

// 画像2
var img2on = new Image();
img2on.src="/images/gm_facilities_h.gif";
var img2off = new Image();
img2off.src="/images/gm_facilities.gif";

// 画像3
var img3on = new Image();
img3on.src="/images/gm_system_h.gif";
var img3off = new Image();
img3off.src="/images/gm_system.gif";

// 画像4
var img4on = new Image();
img4on.src="/images/gm_instruction_h.gif";
var img4off = new Image();
img4off.src="/images/gm_instruction.gif";

// 画像5
var img5on = new Image();
img5on.src="/images/gm_proshop_h.gif";
var img5off = new Image();
img5off.src="/images/gm_proshop.gif";

// 画像6
var img6on = new Image();
img6on.src="/images/gm_event_h.gif";
var img6off = new Image();
img6off.src="/images/gm_event.gif";

// 設定終了


}

// ポイント時の処理
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');
}

}
