window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"A tunnel effect is created by illuminating white cotton sheeting and coloured fluorescent lighting.",
	"Use of coloured lighting on white cotton sheetin.",
	"Lots of steel decking turned into comfortable seating pods for the executive conference delegates.",
	"BBC Connaught Rooms. Fitted table covers in Lycra used to dress the venue for maximum appeal.",
	"White sheeting and Lycra transforms a venue to give it a sharp and modern edge in design technology."

)

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/bbc_conf/slideImg" + currImg + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}


