window.onload = initAll;

var currImg = 0;

var captionText = new Array(
	"SRPS Depot shunter, at Falkirk Springfield Yard, 1970s. Photo W.S.Sellar.",
	"At Bo'ness Goods Shed, 26th June, 2009. Photo SRPS.")

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 = "images/10019/10019_" + currImg + ".jpg";
	document.getElementById("imgtext").innerHTML = captionText[currImg];
}
