if (document.images) { 

// 設定開始（使用する画像を設定してください）

// 画像1 
var img1on = new Image();
img1on.src = "../../s_img/on_menu1.png"; // ポイント時の画像
var img1off = new Image();
img1off.src = "../../s_img/off_menu1.png"; // 通常の画像

// 画像2 
var img2on = new Image();
img2on.src = "../../s_img/on_menu2.png"; // ポイント時の画像
var img2off = new Image();
img2off.src = "../../s_img/off_menu2.png"; // 通常の画像

// 画像3 
var img3on = new Image();
img3on.src = "../../s_img/on_menu3.png"; // ポイント時の画像
var img3off = new Image();
img3off.src = "../../s_img/off_menu3.png"; // 通常の画像

// 画像4 
var img4on = new Image();
img4on.src = "../../s_img/on_menu4.png"; // ポイント時の画像
var img4off = new Image();
img4off.src = "../../s_img/off_menu4.png"; // 通常の画像


// 画像5 
var img5on = new Image();
img5on.src = "../../top_img/on_hmenu1.gif"; // ポイント時の画像
var img5off = new Image();
img5off.src = "../../top_img/off_hmenu1.gif"; // 通常の画像

// 画像6 
var img6on = new Image();
img6on.src = "../../top_img/on_hmenu2.gif"; // ポイント時の画像
var img6off = new Image();
img6off.src = "../../top_img/off_hmenu2.gif"; // 通常の画像

// 画像7 
var img7on = new Image();
img7on.src = "../../top_img/on_hmenu3.gif"; // ポイント時の画像
var img7off = new Image();
img7off.src = "../../top_img/off_hmenu3.gif"; // 通常の画像

// 画像8 
var img8on = new Image();
img8on.src = "../../top_img/on_hmenu4.gif"; // ポイント時の画像
var img8off = new Image();
img8off.src = "../../top_img/off_hmenu4.gif"; // 通常の画像

// 画像9 
var img9on = new Image();
img9on.src = "../../top_img/on_hmenu5.gif"; // ポイント時の画像
var img9off = new Image();
img9off.src = "../../top_img/off_hmenu5.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'); 
} 

} 
