	captionText = new Array(
		"Bearded Dragon. Olympus E-PL2 witih Zuiko 50-200mm f/2.8-3.5 SWD",
		"Ukrainian Vodka. Olympus E-PL2 with Zuiko 50-200mm f/2.8-3.5 SWD",
		"Argentine Merlot Wine. Olympus E-PL2 with Zuiko 50-200mm f/2.8-3.5 SWD",
		"Turbine Fan. Olympus E-PL2 with Zuiko 14-54mm f/2.8-3.5",
		"Westward Tool Set. Olympus E-3 with Zuiko 50-200mm f/2.8-3.5 SWD",
		"Westward Tool set. Olympus E-PL2 with Zuiko 50-200mm f/2.8-3.5 SWD",
		"Disposable Razor Dispenser. Olympus E-P1 with Zuiko 50-200mm f/2.8-3.5 SWD",
		"Patriotic Welder. Olympus E-3 wwith Zuiko 14-54mm f/2.8-3.5",
		"Macro photograph of a ladybug on a flower petal. Olympus E-510 with Zuiko 70-300mm f/4.0-5.6",
		"Model Portfolio Shoot. Olympus E-510 with Zuiko 14-54mm f/2.8-3.5"
		)

	thisImg = 0
	imgCt = captionText.length

	function newSlide(direction)
		{
		if (document.images)
			{
			thisImg = thisImg + direction
			if (thisImg < 0)
				{
				thisImg = imgCt-1
				}
			if (thisImg == imgCt)
				{
				thisImg = 0
				}
			document.slideshow.src = "photoslides/slideImg" + thisImg + ".jpg"
			document.imgForm.imgText.value = captionText[thisImg]
		}
	}
