<!-- Original:  Mike Canonigo (mike@canonigo.com) -->
<!-- Web Site:  http://www.munkeehead.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
NewImg = new Array (
"images/tour/lawn01.jpg",
"images/tour/lawn02.jpg",
"images/tour/bbq01.jpg",
"images/tour/boule01.jpg",
"images/tour/boule02.jpg",
"images/tour/miniten01.jpg",
"images/tour/miniten02.jpg",
"images/tour/shuffle02.jpg",
"images/tour/pool01.jpg",
"images/tour/pool02.jpg",
"images/tour/sauna01.jpg",
"images/tour/spa01.jpg",
"images/tour/shower01.jpg",
"images/tour/allo05.jpg",
"images/tour/allo07.jpg"
);
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

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

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 -->
