<!-- 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 (
"http://www.golfmax.net/websites/00757/photos/01.jpg",
"http://www.golfmax.net/websites/00757/photos/02.jpg",
"http://www.golfmax.net/websites/00757/photos/03.jpg",
"http://www.golfmax.net/websites/00757/photos/04.jpg",
"http://www.golfmax.net/websites/00757/photos/05.jpg",
"http://www.golfmax.net/websites/00757/photos/06.jpg",
"http://www.golfmax.net/websites/00757/photos/07.jpg",
"http://www.golfmax.net/websites/00757/photos/08.jpg",
"http://www.golfmax.net/websites/00757/photos/09.jpg",
"http://www.golfmax.net/websites/00757/photos/10.jpg",
"http://www.golfmax.net/websites/00757/photos/11.jpg",
"http://www.golfmax.net/websites/00757/photos/12.jpg",
"http://www.golfmax.net/websites/00757/photos/13.jpg",
"http://www.golfmax.net/websites/00757/photos/14.jpg",
"http://www.golfmax.net/websites/00757/photos/15.jpg",
"http://www.golfmax.net/websites/00757/photos/16.jpg",
"http://www.golfmax.net/websites/00757/photos/17.jpg",
"http://www.golfmax.net/websites/00757/photos/18.jpg",
"http://www.golfmax.net/websites/00757/photos/19.jpg",
"http://www.golfmax.net/websites/00757/photos/20.jpg",
"http://www.golfmax.net/websites/00757/photos/21.jpg",
"http://www.golfmax.net/websites/00757/photos/22.jpg",
"http://www.golfmax.net/websites/00757/photos/23.jpg",
"http://www.golfmax.net/websites/00757/photos/24.jpg",
"http://www.golfmax.net/websites/00757/photos/25.jpg",
"http://www.golfmax.net/websites/00757/photos/26.jpg",
"http://www.golfmax.net/websites/00757/photos/27.jpg",
"http://www.golfmax.net/websites/00757/photos/28.jpg",
"http://www.golfmax.net/websites/00757/photos/29.jpg",
"http://www.golfmax.net/websites/00757/photos/30.jpg",
"http://www.golfmax.net/websites/00757/photos/31.jpg",
"http://www.golfmax.net/websites/00757/photos/32.jpg",
"http://www.golfmax.net/websites/00757/photos/33.jpg",
"http://www.golfmax.net/websites/00757/photos/34.jpg",
"http://www.golfmax.net/websites/00757/photos/35.jpg",
"http://www.golfmax.net/websites/00757/photos/36.jpg",
"http://www.golfmax.net/websites/00757/photos/37.jpg",
"http://www.golfmax.net/websites/00757/photos/38.jpg",
"http://www.golfmax.net/websites/00757/photos/39.jpg",
"http://www.golfmax.net/websites/00757/photos/40.jpg",
"http://www.golfmax.net/websites/00757/photos/41.jpg",
"http://www.golfmax.net/websites/00757/photos/42.jpg",
"http://www.golfmax.net/websites/00757/photos/43.jpg",
"http://www.golfmax.net/websites/00757/photos/44.jpg",
"http://www.golfmax.net/websites/00757/photos/45.jpg",
"http://www.golfmax.net/websites/00757/photos/46.jpg",
"http://www.golfmax.net/websites/00757/photos/47.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 -->
