window.onload = initLinks;

var myPix = new Array("addition-show/addition1.jpg","addition-show/addition2.jpg","addition-show/addition3.jpg","addition-show/addition4.jpg","addition-show/addition5.jpg","addition-show/addition6.jpg","addition-show/addition7.jpg","addition-show/addition8.jpg","addition-show/addition9.jpg","addition-show/addition010.jpg","addition-show/addition011.jpg","addition-show/addition012.jpg","addition-show/addition013.jpg","addition-show/addition014.jpg","addition-show/addition015.jpg");
var thisPic = 0;

function initLinks() {
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
}

function processPrevious() {
	if (thisPic == 0) {
		thisPic = myPix.length;
	}
	thisPic--;
	document.getElementById("myPicture").src = myPix[thisPic];
	return false;
}

function processNext() {
	thisPic++;
	if (thisPic == myPix.length) {
		thisPic = 0;
	}
	document.getElementById("myPicture").src = myPix[thisPic];
	return false;
}

						