﻿gSlideshowInterval = 7;
gNumberOfImages = 21;
var link;
gImages = new Array(gNumberOfImages);


gImages[0] = "images/body_components/rotators/4740.jpg";
gImages[1] = "images/body_components/rotators/4723.jpg";
gImages[2] = "images/body_components/rotators/4729.jpg";
gImages[3] = "images/body_components/rotators/4721.jpg";
gImages[4] = "images/body_components/rotators/4727.jpg";
gImages[5] = "images/body_components/rotators/4728.jpg";
gImages[6] = "images/body_components/rotators/4843.jpg";
gImages[7] = "images/body_components/rotators/4717.jpg";
gImages[8] = "images/body_components/rotators/4724.jpg";
gImages[9] = "images/body_components/rotators/4735.jpg";
gImages[10] = "images/body_components/rotators/4734.jpg";
gImages[11] = "images/body_components/rotators/4719.jpg";
gImages[12] = "images/body_components/rotators/4750.jpg";
gImages[13] = "images/body_components/rotators/2326.jpg";
gImages[14] = "images/body_components/rotators/4825.jpg";
gImages[15] = "images/body_components/rotators/4605.jpg";
gImages[16] = "images/body_components/rotators/4761.jpg";
gImages[17] = "images/body_components/rotators/4758.jpg";
gImages[18] = "images/body_components/rotators/4770.jpg";
gImages[19] = "images/body_components/rotators/4780.jpg";
gImages[20] = "images/body_components/rotators/4842.jpg";

gPath = new Array(gNumberOfImages);
gPath[0] = "4740";
gPath[1] = "4723";
gPath[2] = "4729";
gPath[3] = "4721";
gPath[4] = "4727";
gPath[5] = "4728";
gPath[6] = "4843";
gPath[7] = "4717";
gPath[8] = "4724";
gPath[9] = "4735";
gPath[10] = "4734";
gPath[11] = "4719";
gPath[12] = "4750";
gPath[13] = "2326";
gPath[14] = "4825";
gPath[15] = "4605";
gPath[16] = "4761";
gPath[17] = "4758";
gPath[18] = "4770";
gPath[19] = "4780";
gPath[20] = "4842";

function canManipulateImages() {
    if (document.images)
        return true;
    else
        return false;
}
function loadSlide(imageURL, docPath) {
    if (gImageCapableBrowser) {
        document.slide.src = imageURL;
        document.getElementById('slideLink').href = "http://www-secure.mcfayden.com/product_detail.aspx?pid=" + docPath
        return false;
    }
    else {
        return true;
    }
}
function nextSlide() {
    gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;
    loadSlide(gImages[gCurrentImage], gPath[gCurrentImage]);
}
gImageCapableBrowser = canManipulateImages();
gCurrentImage = 0;
setInterval("nextSlide()", gSlideshowInterval * 1000);
