// Create a slide show for events page
var the_names = new Array("Images/events-hands.jpg","Images/events-brideandgroom.jpg","Images/events-carriage.jpg",
"Images/events-bride.jpg","Images/events-spy.jpg","Images/events-dining-xmas.jpg",
"Images/events-bride_photo.jpg","Images/events-glasses.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();
}
