// JavaScript Document
function swapimg(filename,target){
	document.images[target].src = filename;
}

//プリロードイメージスクリプト Ver.1.00
Images = new Array();

//設定ここから-------------------------------------------

//プリロード画像を配列に設定

Images[0]= "/common/images/go_top_3.gif";
Images[1]= "/common/images/go_info_3.gif";
Images[2]= "/common/images/go_art_3.gif";
Images[3]= "/common/images/go_facial_3.gif";
Images[4]= "/common/images/go_datsumou_3.gif";
Images[5]= "/common/images/go_matsuge_3.gif";
Images[6]= "/common/images/go_nail_3.gif";
Images[7]= "/common/images/go_metal_3.gif";
Images[8]= "/common/images/go_deco_3.gif";
Images[9]= "/common/images/go_body_3.gif";
Images[10]= "/common/images/go_price_3.gif";
Images[11]= "/common/images/go_school_3.gif";
Images[12]= "/common/images/go_salon_3.gif";
Images[13]= "/common/images/go_access_3.gif";
Images[14]= "/common/images/go_link_3.gif";

//設定ここまで　以下編集禁止-------------------------------------------

function preloadImages(){
	for(i=0; i<Images.length; i++){
		ImageName = "Image"+ i;
		var ImageName = new Image();
		ImageName.src = Images[i];
	}
}
