﻿if (document.images) { 


// 設定開始（使用する画像を設定してください） 

//ページのトップへ戻る

var Img1on = new Image();
Img1on.src = "http://www.bizmemowp.com/wp-content/themes/bizmemowp/images/showtem_on.gif"; // ポイント時の画像
var Img1off = new Image();
Img1off.src = "http://www.bizmemowp.com/wp-content/themes/bizmemowp/images/showtem_off.gif"; // 通常の画像

	// 携帯サイト
var Img2on = new Image();
Img2on.src = "http://www.bizmemowp.com/wp-content/themes/bizmemowp/images/mobile_side_on.gif"; // ポイント時の画像
var Img2off = new Image();
Img2off.src = "http://www.bizmemowp.com/wp-content/themes/bizmemowp/images/mobile_side_off.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'); 
} 

} 

