<!-- 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.mydentonmusic.com/Show_Pics/slide_shows/BMSR/1.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/2.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/3.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/4.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/5.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/6.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/7.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/8.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/9.jpg",
"http://www.mydentonmusic.com/Show_Pics/slide_shows/BMSR/10.jpg"
);
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

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

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