window.onload = initLinks;var myPix = new Array("digital/western.jpg", "digital/kfs01.jpg", "digital/kfs02.jpg", "digital/kfs03.jpg",					  "digital/iPhoneSpike.jpg", "digital/iPhoneRise.jpg", "digital/paradox.jpg",					  "digital/sonas.jpg", "digital/zeppo01.jpg", "digital/zeppo02.jpg", "digital/deeperwell02.jpg",					  "digital/bug.jpg", "digital/uccMap.jpg", "digital/sights.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;}
