window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	" Glastonbury viewing tower at sunset. A riot of colour used to dress the viewing tower, creating a unique feature stand.",
	 "Glastonbury Stonebridge Bar. Black and gold brocade transform the interior of a marquee into a plush bar at the festival.",
	 "Glastonbury Pyramid stage. Chris and his private gig!",
     "Glastonbury - the crew.",
     "Changing rooms, Pyramid stage.",
     "Changing rooms, Pyramid stage.",
     "Glastonbury... and the crowd go wild!",
     "A view of the festival from the park.",
     "Ribbon tower at night.",
     "Ribbon tower at night.",
     "Who is this man!"
       

)

function initAll() {
	document.getElementById("imgText").innerHTML = captionText[0];
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
}

function processPrevious() {
	newSlide(-1);
}

function processNext() {
	newSlide(1);
}

function newSlide(direction) {
	var imgCt = captionText.length;

	currImg = currImg + direction;
	if (currImg < 0) {
		currImg = imgCt-1;
	}
	if (currImg == imgCt) {
		currImg = 0;
	}
	document.getElementById("slideshow").src ="http://www.stitchexhibitionfabrics.co.uk/images/glastonbury_show/slideImg" + currImg + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}


