    NewImg = new Array (
"muster2001aa.jpg","muster2001ac.jpg","muster2001ae.jpg","muster2001ap.jpg","muster2001aq.jpg","muster2001ar.jpg","muster2001ax.jpg","muster2001bf.jpg","muster2001bk.jpg",
"muster200301.jpg","muster200302.jpg","muster200309.jpg","muster200311.jpg","muster200321.jpg","muster200322.jpg","muster200330.jpg","muster200332.jpg","muster200333.jpg"
     );
    Caption = new Array (
"2001 - part of our camp, set up at Jack McGowan's in Mankato.",
"2001 - preparing dinner",
"2001 - discussing period music",
"2001 - working around camp",
"2001 - ",
"2001 - sword drill",
"2001 - ",
"2001 - venison for dinner",
"2001 - taking a break from the summer heat",
"2003 - talking about period games",
"2003 - book binding and sewing",
"2003 - fun for the whole family",
"2003 - a hand-made pair of turn shoes",
"2003 - ",
"2003 - even the lasses get to have fun with the swords",
"2003 - don't forget about the muskets",
"2003 - ",
"2003 - Larry showing off his new pole lathe"
	);

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/musterpics/"+NewImg[ImgNum];
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= "("+ImgMark+" of "+ImgLen + ") " + Caption[ImgNum];
   }
}
	

