<!--gSlideshowInterval = 13;gNumberOfImages = 13;gImages = new Array(gNumberOfImages);gImages[0] = "images/photos/oht_home_photo02.jpg";gImages[1] = "images/photos/oht_home_photo03.jpg";gImages[2] = "images/photos/oht_home_photo05.jpg";gImages[3] = "images/photos/oht_home_photo07.jpg";gImages[4] = "images/photos/oht_home_photo08.jpg";gImages[5] = "images/photos/oht_home_photo_vase.jpg";gImages[6] = "images/photos/oht_home_photo_fire.jpg";gImages[7] = "images/photos/oht_home_photo_pie.jpg";gImages[8] = "images/photos/oht_home_photo_studio.jpg";gImages[9] = "images/photos/oht_home_photo_bed.jpg";gImages[10] = "images/photos/oht_home_photo_daybed.jpg";gImages[11] = "images/photos/oht_home_photo_bath.jpg";gImages[12] = "images/photos/oht_home_photo_six.jpg";function canManipulateImages() {	if (document.images)		return true;	else		return false;}function loadSlide(imageURL) {	if (gImageCapableBrowser) {		document.slide.src = imageURL;		return false;	}	else {		return true;	}}function nextSlide() {	gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;	loadSlide(gImages[gCurrentImage]);}gImageCapableBrowser = canManipulateImages();gCurrentImage = 0;setInterval("nextSlide()",gSlideshowInterval * 1000);// -->