ImgFile = new Array();
for (i=0; i<3; i++){
ImgFile[i]= new Image();
}

ImgFile[0].src="../plan/img/007_240.jpg";
ImgFile[1].src="../plan/img/007_240_2.jpg";
ImgFile[2].src="../plan/img/007_240_3.jpg";

ImgExp= new Array();
ImgExp[0]="Kobe Beef Sukiyaki Dinner";
ImgExp[1]="Kobe Beef Sukiyaki Dinner";
ImgExp[2]="Kobe Beef Sukiyaki Dinner";

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];
}
}
