    NewImg = new Array (
"haunted20041031a.JPG","haunted20041031b.JPG","haunted20041031c.JPG","haunted20041031d.JPG","haunted20041031e.JPG"
     );
    Caption = new Array (
"2004 - Bruce makes a new friend",
"2004 - So does Rilla",
"2004 - The local grave yard",
"2004 - One of the workers was just a stuffed shirt",
"2004 - We found out Mia is part banshee"
	);

var ImgNum = 0;
var ImgLength = NewImg.length - 1;
var ImgLen = NewImg.length

function chgImg(direction) {
if (document.images) {
ImgNum = ImgNum + direction;
if (ImgNum > ImgLength) {
ImgNum = 0;
}
if (ImgNum < 0) {
ImgNum = ImgLength;
}
ImgMark = ImgNum + 1;
document.slideshow.src = "http://www.clanntartan.org/gallery/corcoranpics/"+NewImg[ImgNum];
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= "("+ImgMark+" of "+ImgLen + ") " + Caption[ImgNum];
   }
}
	

