window.onload = initLinks;var myPix = new Array("books/captainKan01.jpg", "books/captainKan02.jpg",					  "books/captainKan03.jpg", "books/captainKan04.jpg"					  					  					  );var thisPic = 0;function processPrevious() {	if(thisPic == 0) {       thisPic = myPix.length;	}	thisPic--;	document.getElementById("myPicture").src = myPix[thisPic];	return false;}function initLinks() {	document.getElementById("prevLink").onclick = processPrevious;	document.getElementById("nextLink").onclick = processNext;}function processNext() {	thisPic++;	if (thisPic == myPix.length) {		thisPic = 0;	}	document.getElementById("myPicture").src = myPix[thisPic];	return false;}
