	captionText = new Array(
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",		
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom.",
		"Gallery of Images from the Allied Beauty Association show in Edmonton's Agricom."
	)

	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 = "slides/slideImg" + thisImg + ".jpg"
			document.imgForm.imgText.value = captionText[thisImg]
		}
	}