window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"I just had to see the doomed ship.",
	"Just stopped off to get some lemondrops, the locals thought it was a strange looking car.",
	"I had to see this pivitol moment of history, very nice chaps actually.",
	"I witnessed the biggest moment in American history.",
	"I couldn't affect the time-continuum with this one.",
	"Met my younger self, what a moustache!",
	"Abbey Road"
)

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("slideshow2").src = "timetravels/slideImg" + currImg + ".gif";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}

