


<!-- 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
var urlArray = new Array(6); //for URL's, increase size as necessary
var url = "#"; //initial URL

//add your necessary URL's



NewImg = new Array (
"troutderby_09/1.jpg",
"troutderby_09/2.jpg",
"troutderby_09/3.jpg",
"troutderby_09/4.jpg",
"troutderby_09/5.jpg",
"troutderby_09/6.jpg",
"troutderby_09/7.jpg",
"troutderby_09/8.jpg",
"troutderby_09/9.jpg",
"troutderby_09/10.jpg",

"troutderby_09/11.jpg",
"troutderby_08/12.jpg",
"troutderby_08/13.jpg",
"troutderby_08/14.jpg",
"troutderby_08/15.jpg",
"troutderby_08/16.jpg",
"troutderby_08/17.jpg",
"troutderby_08/18.jpg",
"troutderby_08/19.jpg",
"troutderby_08/20.jpg",

"troutderby_08/21.jpg",
"troutderby_08/22.jpg",
"troutderby_08/23.jpg",
"troutderby_08/24.jpg",
"troutderby_08/25.jpg",

);
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

//Time delay between Slides in milliseconds
var delay = 2000;

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.anita_w.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 -->
