	var Slide = new Array();
	Slide[1] = new Image();
	Slide[2] = new Image();
	Slide[3] = new Image();
	Slide[4] = new Image();
	Slide[5] = new Image();
	Slide[6] = new Image();
	Slide[7] = new Image();
	Slide[8] = new Image();
	Slide[9] = new Image();
	Slide[10] = new Image();
	Slide[11] = new Image();
	Slide[12] = new Image();
	Slide[13] = new Image();
	Slide[14] = new Image();
	Slide[15] = new Image();
	Slide[16] = new Image();
	Slide[17] = new Image();
	Slide[18] = new Image();
	
	Slide[1].src = "images/goode1/IMG_2669.JPG";
	Slide[2].src = "images/goode1/IMG_2670.JPG";
	Slide[3].src = "images/goode1/IMG_2671.JPG";
	Slide[4].src = "images/goode1/IMG_2672.JPG";
	Slide[5].src = "images/goode1/IMG_2673.JPG";
	Slide[6].src = "images/goode1/IMG_2674.JPG";
	Slide[7].src = "images/goode1/IMG_2675.JPG";
	Slide[8].src = "images/goode1/IMG_2676.JPG";
	Slide[9].src = "images/goode1/IMG_2677.JPG";
	Slide[10].src = "images/goode1/IMG_2678.JPG";
	Slide[11].src = "images/goode1/IMG_2679.JPG";
	Slide[12].src = "images/goode1/IMG_2680.JPG";
	Slide[13].src = "images/goode1/IMG_2681.JPG";
	Slide[14].src = "images/goode1/IMG_2682.JPG";
	Slide[15].src = "images/goode1/IMG_2683.JPG";
	Slide[16].src = "images/goode1/IMG_2684.JPG";
	Slide[17].src = "images/goode1/IMG_2685.JPG";
	Slide[18].src = "images/goode1/IMG_2686.JPG";
	var Caption = new Array();
	
	Caption[1] = "Goode Ball Field";
	Caption[2] = "Goode Bellvue Community Center";
	Caption[3] = "Goode Bellvue Community Center";
	Caption[4] = "Goode Bellvue Community Center";
	Caption[5] = "Goode Country Side";
	Caption[6] = "Goode Country";
	Caption[7] = "Goode Ruritan Club Project";
	Caption[8] = "Goode Station";
	Caption[9] = "Goode Station Rd and Forest Rd";
	Caption[10] = "Goode Ruritan Adopt a Highway";
	Caption[11] = "Goode Old Post Office Building";
	Caption[12] = "Goode Station Rd and Goode Rd";
	Caption[13] = "Old Goode";
	Caption[14] = "Goode Post Office Sign";
	Caption[15] = "Goode Post Office";
	Caption[16] = "Goode VA 24556";
	Caption[17] = "Goode Busch Hall";
	Caption[18] = "Goode Volunteer Rescue Squad";

	var SlideNumber = 1;
	var TotalSlides = Slide.length - 1;
	
	var timerID  = "";
	
	var Slide2 = new Array();
	Slide2[1] = new Image();
	Slide2[2] = new Image();
	Slide2[3] = new Image();
	Slide2[4] = new Image();
	Slide2[5] = new Image();
	Slide2[6] = new Image();
	
	Slide2[1].src = "images/ghost-from-the-past/epson149.jpg";
	Slide2[2].src = "images/ghost-from-the-past/epson149back.jpg";
	Slide2[3].src = "images/ghost-from-the-past/epson171.jpg";
	Slide2[4].src = "images/ghost-from-the-past/epson171back.jpg";
	Slide2[5].src = "images/ghost-from-the-past/scan0125a.jpg";
	Slide2[6].src = "images/ghost-from-the-past/scan0125back.jpg";
	var Caption2 = new Array();
	
	Caption2[1] = "Help Identify 1";
	Caption2[2] = "Help Identify 1 back";
	Caption2[3] = "Help Identify 2";
	Caption2[4] = "Help Identify 2 back";
	Caption2[5] = "Help Identify 3";
	Caption2[6] = "Help Identify 3 back";

	var SlideNumber2 = 1;
	var TotalSlides2 = Slide2.length - 1;
	

	function showSlide(direction)
	{
		if (direction == "next")
		{
			(SlideNumber == TotalSlides) ? SlideNumber = 1 : SlideNumber += 1;
			if	(timerID)
				clearTimeout(timerID);
		}
		else if (direction == "previous")
		{
			(SlideNumber == 1) ? SlideNumber = TotalSlides : SlideNumber -= 1;
			if	(timerID)
				clearTimeout(timerID);
		}
		else
		{
			timerID = setTimeout("showSlide('auto')",1500);
			(SlideNumber == TotalSlides) ? SlideNumber = 1 : SlideNumber++;
		}
		if (document.images)
		{
			document.slideframe.src = Slide[SlideNumber].src;
			document.slidecontrols.caption.value = Caption[SlideNumber];
			document.slidecontrols.currentslide.value = SlideNumber;
		}
	}

	function showSlide2(direction)
	{
		if (direction == "next")
		{
			(SlideNumber2 == TotalSlides2) ? SlideNumber2 = 1 : SlideNumber2 += 1;
			if	(timerID)
				clearTimeout(timerID);
		}
		else if (direction == "previous")
		{
			(SlideNumber2 == 1) ? SlideNumber2 = TotalSlides2 : SlideNumber2 -= 1;
			if	(timerID)
				clearTimeout(timerID);
		}
		else
		{
			timerID = setTimeout("showSlide2('auto')",1500);
			(SlideNumber2 == TotalSlides2) ? SlideNumber2 = 1 : SlideNumber2++;
		}
		if (document.images)
		{
			document.slideframe.src = Slide2[SlideNumber2].src;
			document.slidecontrols.caption.value = Caption2[SlideNumber2];
			document.slidecontrols.currentslide.value = SlideNumber2;
		}
	}

function CheckAlreadyTimed()
{
	if	(timerID)
		clearTimeout(timerID);
}
