window.onload = initLinks;

var atlasArray = new Array("JUNE-7-2007/Atlas10.jpg","JUNE-7-2007/Atlas20.jpg","JUNE-7-2007/Atlas30.jpg","JUNE-7-2007/Atlas40.jpg","JUNE-7-2007/Atlas50.jpg","JUNE-7-2007/Atlas60.jpg","JUNE-7-2007/Atlas70.jpg","JUNE-7-2007/Atlas80.jpg");
var thisPic = 0;

function initLinks() {
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
}

function processPrevious() {
	if (thisPic == 0) {
		thisPic = atlasArray.length;
	}
	thisPic--;
	document.getElementById("myPicture").src = atlasArray[thisPic];
	return false;
}

function processNext() {
	thisPic++;
	if (thisPic == atlasArray.length) {
		thisPic = 0;
	}
	document.getElementById("myPicture").src = atlasArray[thisPic];
	return false;
}

						