window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"AAPG goes to Washington: Participants in the inaugural AAPG Congressional Visits Day relax before heading to the Hill to meet with Congressional leaders and their staffs.",
	"GEO-DC Governance Board Vice Chair Dan Smith and DEG Vice President Mary Harris",
	"Emmett Sacrey and AAPG past-president Will Green",
	"John Jordan and Jeff Eppink",
	"GEO-DC Governance Board member Lee Harvard and Rep. Harry Teague (D-N.M.)")

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 = "ww" + (currImg + 1) + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}

