window.onload = initLinks;

var myPix = new Array("../pics/sher/01.jpg","../pics/sher/02.jpg","../pics/sher/03.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("OA").src = myPix[thisPic];
	return false;
}

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

