// Create a slide show of Inn scenes
var the_names = new Array("Images/ThumbCrocus.JPG", "Images/ThumbCoffeeAndDaffodils.JPG",
"Images/ThumbSunriseOverSnow.JPG", "Images/Golf-B-in-sand.JPG");
var the_images = new Array();
for( i=0; i< the_names.length;i++){
the_images[i]= new Image();
the_images[i].src = the_names[i];
}
var index = 0;
var the_timeout;
function rotateImage(){
document.images[0].src = the_images[index].src;
index++;
if( index >= the_images.length){
index = 0;
}
the_timeout = setTimeout("rotateImage();", 2000);
}
function startTheShow(){
clearTimeout(the_timeout);
rotateImage();
}  
