﻿var images = new Array();
var x;


function nextImage(y) {

    if (document.getElementById("SlideShow").src != null) {
        document.getElementById("SlideShow").src = images[y].toString();
        }
        if ((y + 1) == images.length){
            x = 0;
            }
        else
        {
            x = x + 1;
            }

 
    setTimeout("nextImage(x)", 3000);
}

function initializeSlideShow() {
    images.push("images/Ourstay_10.JPG");
    images.push("images/Ourstay_11.JPG");
    images.push("images/Ourstay_17.JPG");
    images.push("images/Ourstay_01.JPG");
    startSlideShow();
}

function startSlideShow() {
    x = 0;
    setTimeout("nextImage(x)", 3000);
}
