ImgFile = new Array();
for (i=0; i<2; i++){
ImgFile[i]= new Image();
}

ImgFile[0].src="../plan/img/004_240.jpg";
ImgFile[1].src="../plan/img/004_240_2.jpg";

ImgExp= new Array();
ImgExp[0]="Seasonal Kaiseki or Full-Course Dinner";
ImgExp[1]="Seasonal Kaiseki or Full-Course 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];
}
}
