
gSlideshowInterval = 4;
gNumberOfImages = 9;
gImages = new Array(gNumberOfImages);
gImages[0] = "/portals/_mthoodrentals/images/default/rotator/splash3.jpg";
gImages[1] = "/portals/_mthoodrentals/images/default/rotator/splash4.jpg";
gImages[2] = "/portals/_mthoodrentals/images/default/rotator/splash5.jpg";
gImages[3] = "/portals/_mthoodrentals/images/default/rotator/splash6.jpg";
gImages[4] = "/portals/_mthoodrentals/images/default/rotator/splash7.jpg";
gImages[5] = "/portals/_mthoodrentals/images/default/rotator/splash8.jpg";
gImages[6] = "/portals/_mthoodrentals/images/default/rotator/splash9.jpg";
gImages[7] = "/portals/_mthoodrentals/images/default/rotator/splash10.jpg";
gImages[8] = "/portals/_mthoodrentals/images/default/rotator/splash1.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);
