// Javascript for Plant Tour Photo Slideshow

NewImg = new Array (
"/atd/images/about/tour/newTour/image101.jpg",
//"/atd/images/about/tour/newTour/image102.jpg",
//"/atd/images/about/tour/newTour/image103.jpg",
"/atd/images/about/tour/newTour/image104.jpg",
"/atd/images/about/tour/newTour/image105.jpg",
"/atd/images/about/tour/newTour/image106.jpg",
//"/atd/images/about/tour/newTour/image107.jpg",
//"/atd/images/about/tour/newTour/image108.jpg",
//"/atd/images/about/tour/newTour/image109.jpg",
"/atd/images/about/tour/newTour/image110.jpg",
//"/atd/images/about/tour/newTour/image111.jpg",
//"/atd/images/about/tour/newTour/image112.jpg",
//"/atd/images/about/tour/newTour/image113.jpg",
//"/atd/images/about/tour/newTour/image114.jpg",
"/atd/images/about/tour/newTour/image115.jpg",
//"/atd/images/about/tour/newTour/image116.jpg",
//"/atd/images/about/tour/newTour/image117.jpg",
//"/atd/images/about/tour/newTour/image118.jpg",
//"/atd/images/about/tour/newTour/image119.jpg",
//"/atd/images/about/tour/newTour/image120.jpg",
"/atd/images/about/tour/newTour/image121.jpg",
"/atd/images/about/tour/newTour/image122.jpg",
//"/atd/images/about/tour/newTour/image123.jpg",
//"/atd/images/about/tour/newTour/image124.jpg",
"/atd/images/about/tour/newTour/image125.jpg"
//"/atd/images/about/tour/newTour/image126.jpg"
);
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

//Time delay between Slides in milliseconds
var delay = 3000;

var lock = false;
var run;
function chgImg(direction) {
if (document.images) {
ImgNum = ImgNum + direction;
if (ImgNum > ImgLength) {
ImgNum = 0;
}
if (ImgNum < 0) {
ImgNum = ImgLength;
}
document.slideshow.src = NewImg[ImgNum];
   }
}
function auto() {
if (lock == true) {
lock = false;
window.clearInterval(run);
}
else if (lock == false) {
lock = true;
run = setInterval("chgImg(1)", delay);
   }
}
//  End
