
gSlideshowInterval = 4;
gNumberOfImages = 9;
gImages = new Array(gNumberOfImages);
gImages[0] = "/portals/_mthoodrentals/images/default/rotator/splash03.png";
gImages[1] = "/portals/_mthoodrentals/images/default/rotator/splash04.png";
gImages[2] = "/portals/_mthoodrentals/images/default/rotator/splash05.png";
gImages[3] = "/portals/_mthoodrentals/images/default/rotator/splash06.png";
gImages[4] = "/portals/_mthoodrentals/images/default/rotator/splash07.png";
gImages[5] = "/portals/_mthoodrentals/images/default/rotator/splash08.png";
gImages[6] = "/portals/_mthoodrentals/images/default/rotator/splash09.png";
gImages[7] = "/portals/_mthoodrentals/images/default/rotator/splash_10.png";
gImages[8] = "/portals/_mthoodrentals/images/default/rotator/splash01.png";

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);

