	captionText = new Array(
		"Studio Photograph. Olympus E-510 with Zuiko 14-54mm f/2.8-3.5 and Olympus FL-36R speedlights.",
		"Model Portfolio Shoot. Olympus E-3 with Zuiko 14-54mm f/2.8-3.5 and Olympus FL-36R speedlights.",
		"Model Portfolio Shoot. Olympus E-3 with Zuiko 14-54mm f/2.8-3.5 and Olympus FL-36R speedlights.",
		"Quinceanera Photoshoot. Olympus E-3 with Zuiko 14-54mm f/2.8-3.5 and Olympus FL-36R speedlights.",
		"Quinceanera Photoshoot. Olympus E-3 with Zuiko 14-54mm f/2.8-3.5 and Olympus FL-36R speedlights.",
		"Wine Product Shot. Olympus E-510 with Zuiko 14-54mm f/2.8-3.5 and Olympus FL-36R speedlights.",
		"Shooting the moon. Olympus E-510 with Zuiko 70-300mm f/4.0-5.6. and Zuiko EC-14 teleconverter",
		"Studio Photograph. Olympus E-510 with Zuiko 14-54mm f/2.8-3.5 and Olympus FL-36R speedlights.",
		"Macro photograph of a ladybug on a flower petal. Olympus E-510 with Zuiko 70-300mm f/4.0-5.6.",
		"Macro photograph of a bee on a matching flower. Olympus E-510 with Zuiko 70-300mm f/4.0-5.6."
		)

	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]
		}
	}