window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"\"A lesson from stratigraphy: Everything you say and do makes an impact, but the impact may not be measurable to you.\"",
	"Another showing a cross section with dropstones in soft sediment and accompanying soft-sediment disturbance was accompanied with the statement \"Her life was like the sediment in a pond\; criticism from her parents made a big splash on the surface and a permanent crater in the mud below.\" ")

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 = "art" + (currImg + 1) + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}

