	captionText = new Array(
		"Business card for Cyclops Photo Studio, a division of Media Mainline",
		"This is my personal business card",
		"This is a card designed for Peter Parnell by the Trinity Design Team",
		"This is a business card and company logo designed for Stilges Technologies, Inc.",
		"This is a business card for a new straw material technologies company.",
		"This is another of my personal business cards"
	)

	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 = "slides2/slideImg" + thisImg + ".jpg"
			document.imgForm.imgText.value = captionText[thisImg]
		}
	}