//プリロードイメージスクリプト Ver.1.00
//2006/08/06 Programed By Rikiya Takazawa

Images = new Array();

//設定ここから-------------------------------------------

//プリロード画像を配列に設定

Images[0]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/h1_cr.gif";
Images[1]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/h1_cr.gif";
Images[2]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/about_on.gif";
Images[3]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/about.gif";
Images[4]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/company_on.gif";
Images[5]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/company.gif";
Images[6]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/works_on.gif";
Images[7]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/works_cr.gif";
Images[8]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/contact_on.gif";
Images[9]= "http://a-milightdesign.sakura.ne.jp/new/wp-content/themes/new/img/nav/contact_cr.gif";



//設定ここまで　以下編集禁止-------------------------------------------

function PreloadImg(){
	for(i=0; i<Images.length; i++){
		ImageName = "Image"+ i;
		var ImageName = new Image();
		ImageName.src = Images[i];
	}
}
