
<!--
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
gSlideshowInterval = 5;
gNumberOfImages = 16;

gImages = new Array(gNumberOfImages);
gImages[0] = "photos/rotate1.jpg";
gImages[1] = "photos/rotate2.jpg";
gImages[2] = "photos/rotate15.jpg";
gImages[3] = "photos/rotate3.jpg";
gImages[4] = "photos/rotate4.jpg";
gImages[5] = "photos/rotate5.jpg";
gImages[6] = "photos/rotate11.jpg";
gImages[7] = "photos/rotate6.jpg";
gImages[8] = "photos/rotate7.jpg";
gImages[9] = "photos/rotate8.jpg";
gImages[10] = "photos/rotate9.jpg";
gImages[11] = "photos/rotate10.jpg";
gImages[12] = "photos/rotate12.jpg";
gImages[13] = "photos/rotate16.jpg";
gImages[14] = "photos/rotate13.jpg";
gImages[15] = "photos/rotate14.jpg";

function canManipulateKidsImages() {
	if (document.images)
		return true;
	else
		return false;
}
function loadKidsSlide(imageURL) {
	if (gImageCapableBrowser) {
		document.kids.src = imageURL;
		return false;
	}
	else {
		return true;
	}
}
function nextKidsSlide() {
	gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;
	loadKidsSlide(gImages[gCurrentImage]);
}
gImageCapableBrowser = canManipulateKidsImages();
gCurrentImage = 0;
setInterval("nextKidsSlide()",gSlideshowInterval * 1000);
// -->

