	captionText = new Array(
		"A poster for a Music and Arts Celebration, promoting the arts in the City Core.",
		"A full-page Display Ad for F2 Fine Furnishings in South Edmonton Commons.",			
		"A full-page Display Ad for the Sun Toyota new car dealership on Whyte Ave.",
		"A full-page Display Ad for Rogers Wireless dealer, Wireless Unlimited, using their logo as a template for the entire ad.",
		"One of many box labels for Angelo Decor fountains retailed in Rona, Home Depot, Canadian Tire, Home Hardware, Peavey Mart, Kent, other big box retailers",
		"A poster for a Music Festival promoting the arts in the City Core.  Also created were t-shirts and postcards, using the same design concept.",
		"A poster for the Canadian Imperial Bank of Commerce's (CIBC) Customer Appreciation Day",
		"One of many instructional PDF documents created for Angelo Decor International.",
		"A B/W illustrated poster to advertise an upcoming Chess Tournament",
		"An invitation designed for the University of Alberta's Supply Management Trade Show"
	)

	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]
		}
	}
