ImgFile = new Array();
for (i=0; i<4; i++){
ImgFile[i]= new Image();
}

ImgFile[0].src="../plan/img/008_240.jpg";
ImgFile[1].src="../plan/img/008_240_2.jpg";
ImgFile[2].src="../plan/img/008_240_3.jpg";
ImgFile[3].src="../plan/img/008_240_4.jpg";

ImgExp= new Array();
ImgExp[0]="Kobe Beef Shabu-shabu Dinner";
ImgExp[1]="Kobe Beef Shabu-shabu Dinner";
ImgExp[2]="Kobe Beef Shabu-shabu Dinner";
ImgExp[3]="特撰神戸牛しゃぶしゃぶ";

function ImgChange(n){
if (document.images){
document.photo.src=ImgFile[n].src;
document.photo.height=ImgFile[n].height;
document.photo.width=ImgFile[n].width;
document.photo.alt=ImgExp[n];
}
}
