<!--//

imgPath = "images/";
currentIndx = 0;
totalImages = 12;

myImages = new Array(); 
	myImages[0] = imgPath + 'ceremonyAwards_1.jpg';
	myImages[1] = imgPath + 'ceremonyAwards_2.jpg';
	myImages[2] = imgPath + 'ceremonyAwards_3.jpg';
	myImages[3] = imgPath + 'ceremonyAwards_4.jpg';
	myImages[4] = imgPath + 'ceremonyAwards_5.jpg';
	myImages[5] = imgPath + 'ceremonyAwards_6.jpg';
	myImages[6] = imgPath + 'ceremonyAwards_7.jpg';
	myImages[7] = imgPath + 'ceremonyAwards_8.jpg';
	myImages[8] = imgPath + 'ceremonyAwards_9.jpg';
	myImages[9] = imgPath + 'ceremonyAwards_10.jpg';
	myImages[10] = imgPath + 'ceremonyAwards_11.jpg';
	myImages[11] = imgPath + 'ceremonyAwards_12.jpg';
	
myText = new Array()
	myText[0] = 'Opening of KLC Awards Ceremony 2006.';
	myText[1] = 'Jenny Gibbs, Principal; Marcy Brown, Vice Principal; with guest speakers: Rasshied Din, DIN Associates Ltd. and Andy Sturgeon, Garden Design; Simon Cavelle, Director of Studies.';
	myText[2] = 'Introduction by Jenny Gibbs, Principal.';
	myText[3] = 'Anthony Evans, Managing Director, Cole & Son Wallpapers presents the award for runner-up of Best History of Style Compendium, collected on behalf of Vicky Evans by Maarit Ovaskainen.';
	myText[4] = 'Chris Candy, Director, Candy & Candy presents the award for Contemporary and Innovative Design to Paul Broadley.';
	myText[5] = 'Sue Crewe, Editor, House & Garden presenting the award for Environmentally Responsible Design.';
	myText[6] = 'Gordon Lindsay, Design Director and Chris Westhead, Project Director, Gordon Lindsay Design present the award for Interior Design Group Project to ICON.';
	myText[7] = 'Gail Taylor and Karen Howes, Directors, Taylor Howes present the award for Interior Design Final Project to Claire Hewson.';
	myText[8] = 'Simon Cavelle, Director of Studies, presents the KLC award for Concept Development to Su Walker.';
	myText[9] = 'Simon Cavelle, Director of Studies, presents the KLC award for Interior Models to Dahlia Vlach.';
	myText[10] = 'Stephen Woodhams, Garden Designer of Woodhams presents the award Garden Design Group Project to Sphere, Alex Ling and Vanessa Day.';
	myText[11] = 'Key figures from the interior and garden industries presenting awards to KLC graduates.';

imagesPreloaded = new Array(totalImages) 
	for (var i = 0; i < myImages.length; i++) {
		imagesPreloaded[i] = new Image(450,213)
		imagesPreloaded[i].src = myImages[i]
	}

function loadImgNum(thisOne) {
	document.exhibImage.src = imagesPreloaded[thisOne].src;
	document.getElementById("imgText").innerHTML = myText[thisOne];
	currentIndx = thisOne;
	resetStyle();
	setStyle(thisOne);
}

function imgForward() {
	if (currentIndx < imagesPreloaded.length - 1) {
		currentIndx = currentIndx + 1;
		document.exhibImage.src = imagesPreloaded[currentIndx].src
		document.getElementById("imgText").innerHTML = myText[currentIndx];
		resetStyle();
		setStyle(currentIndx);
	} else {
		currentIndx = 0
		document.exhibImage.src = imagesPreloaded[currentIndx].src
		document.getElementById("imgText").innerHTML = myText[currentIndx];
		resetStyle();
		setStyle(currentIndx);
	}

}

function imgBack() {
	if (currentIndx > 0) {
		currentIndx = currentIndx - 1;
		document.exhibImage.src = imagesPreloaded[currentIndx].src
		document.getElementById("imgText").innerHTML = myText[currentIndx];
		resetStyle();
		setStyle(currentIndx);
	} else {
		currentIndx = (totalImages - 1);
		document.exhibImage.src = imagesPreloaded[currentIndx].src
		document.getElementById("imgText").innerHTML = myText[currentIndx];
		resetStyle();
		setStyle(currentIndx);
	}
}

function resetStyle() {
	for (var i = 0; i < myImages.length; i++) {
		document.getElementById("imgTxt" + i + "").className = "galButton";
	}
}

function setStyle(thisOne) {
	document.getElementById("imgTxt" + thisOne).className = "galButtonSelected";
}

// -->