window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"Alias Sergeant Bob Cryer",
	"Brace of Deloreans",
	"Chris Barrie",
	"Chris Barrie & Jo",
	"Claudia Wells aka Jennifer",
	"The inside of the Timecar, don't touch anything, you never know where you might end up!",
	"All lit up",
	"On the way to Goodwood racetrack with two other supercars.",
	"Timecar",
	"Daniel Merryweather & Timecar",
	"JLC Show",
	"Deloreans band",
	"Into the future",
	"To the Manor born",
	"Kevin Bishop",
	"London",
	"Looking through 32 Deloreans",
	"Michio and me",
	"Michio Kaku",
	"Woo Hoo",
	"Movie Icons",
	"Movie Magic at Pinewood Studios",
	"Save the Clocktower",
	"Xcellent"
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
)

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 = "gallery/slideImg" + currImg + ".gif";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}

