﻿if (document.images) { 


// 設定開始（使用する画像を設定してください） 

//獣医師お申し込み

var Img1on = new Image();
Img1on.src = "http://www.vpet.jp/wp-content/themes/vpet/images/hospital_on.gif"; // ポイント時の画像
var Img1off = new Image();
Img1off.src = "http://www.vpet.jp/wp-content/themes/vpet/images/hospital_off.gif"; // 通常の画像



//Vpet購入

// 画像2 
var Img2on = new Image();
Img2on.src = "http://www.vpet.jp/wp-content/themes/vpet/images/selling_on.gif";
var Img2off = new Image();
Img2off.src = "http://www.vpet.jp/wp-content/themes/vpet/images/selling_off.gif";


//ページトップへ

var Img9on = new Image();
Img9on.src = "http://www.vpet.jp/wp-content/themes/vpet/images/pagetop_on.gif"; // ポイント時の画像
var Img9off = new Image();
Img9off.src = "http://www.vpet.jp/wp-content/themes/vpet/images/pagetop_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'); 
} 

} 


