window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"Andrea Reynolds and Rick Fritz address the students.", 	
	"EMD Luncheon was well attended at the 2009 annual meeting in Denver.", 
	"Creties Jenkins, EMD President 2008-09, addressed the EMD.", 
	"Laura Wray was program chair for 2009.") // These are enclosed in double quotes and separated with commas

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 = "banquet" + (currImg + 1) + ".jpg"; // add name of file source here
	document.getElementById("imgText").innerHTML = captionText[currImg];
}
