if (document.images) { 


// 設定開始（使用する画像を設定） 

// 通常の画像 
var img0 = new Image(); 
img0.src = "../shopguide/images/floor0.gif"; 

// ポイント時の画像1 
var img1 = new Image(); 
img1.src = "../shopguide/images/floor1.gif"; 

// ポイント時の画像2 
var img2 = new Image(); 
img2.src = "../shopguide/images/floor2.gif"; 

// ポイント時の画像3 
var img3 = new Image(); 
img3.src = "../shopguide/images/floor3.gif"; 

// ポイント時の画像4 
var img4 = new Image(); 
img4.src = "../shopguide/images/floor4.gif"; 


// ポイント時の画像5 
var img5 = new Image(); 
img5.src = "../shopguide/images/floor5.gif"; 


// ポイント時の画像6 
var img6 = new Image(); 
img6.src = "../shopguide/images/floor6.gif"; 


// ポイント時の画像7 
var img7 = new Image(); 
img7.src = "../shopguide/images/floor7.gif"; 

// ポイント時の画像8 
var img8 = new Image(); 
img8.src = "../shopguide/images/floor8.gif"; 

// ポイント時の画像9 
var img9 = new Image(); 
img9.src = "../shopguide/images/floor9.gif"; 

// ポイント時の画像10 
var img10 = new Image(); 
img10.src = "../shopguide/images/floor10.gif"; 

// ポイント時の画像11 
var img11 = new Image(); 
img11.src = "../shopguide/images/floor11.gif"; 


// ポイント時の画像12 
var img12 = new Image(); 
img12.src = "../shopguide/images/floor12.gif"; 

// ポイント時の画像13 
var img13 = new Image(); 
img13.src = "../shopguide/images/floor13.gif"; 

// ポイント時の画像14 
var img14 = new Image(); 
img14.src = "../shopguide/images/floor14.gif"; 

// ポイント時の画像15 
var img15 = new Image(); 
img15.src = "../shopguide/images/floor15.gif"; 

// ポイント時の画像16 
var img16 = new Image(); 
img16.src = "../shopguide/images/floor16.gif"; 

// ポイント時の画像17 
var img17 = new Image(); 
img17.src = "../shopguide/images/floor17.gif"; 

// ポイント時の画像18 
var img18 = new Image(); 
img18.src = "../shopguide/images/floor18.gif"; 

// ポイント時の画像19 
var img19 = new Image(); 
img19.src = "../shopguide/images/floor19.gif"; 

// ポイント時の画像20 
var img20 = new Image(); 
img20.src = "../shopguide/images/floor20.gif"; 

// ポイント時の画像21 
var img21 = new Image(); 
img21.src = "../shopguide/images/floor21.gif"; 

// ポイント時の画像22 
var img22 = new Image(); 
img22.src = "../shopguide/images/floor22.gif"; 

// ポイント時の画像23 
var img23 = new Image(); 
img23.src = "../shopguide/images/floor23.gif"; 

// ポイント時の画像24 
var img24 = new Image(); 
img24.src = "../shopguide/images/floor24.gif"; 

// ポイント時の画像25 
var img25 = new Image(); 
img25.src = "../shopguide/images/floor25.gif"; 

// ポイント時の画像26 
var img26 = new Image(); 
img26.src = "../shopguide/images/floor26.gif"; 

// ポイント時の画像27 
var img27 = new Image(); 
img27.src = "../shopguide/images/floor27.gif"; 

// ポイント時の画像28 
var img28 = new Image(); 
img28.src = "../shopguide/images/floor28.gif";

// ポイント時の画像28 
var img29 = new Image(); 
img29.src = "../shopguide/images/floor29.gif"; 



// 設定終了 


} 

// ポイント時の処理 
function On(name) { 

if (document.images) { 
document.images['def'].src = eval(name + '.src'); 
} 

} 

// 放した時の処理 
function Off() { 

if (document.images) { 
document.images['def'].src = img0.src; 
} 

} 




