// JavaScript Document
window.onload = initLinks;

var myPix = new Array("images/gallery/3dmax1_large.png", "images/gallery/3dmax2_large.png", "images/gallery/3dmax3_large.png", "images/gallery/3dmax4_large.png", "images/gallery/3dmax5_large.png", "images/gallery/3dmax6_large.png", "images/gallery/3dmax7_large.png", "images/gallery/3dmax8_large.png", "images/gallery/3dmax9_large.png", "images/gallery/3dmax10_large.png", "images/gallery/3dmax11_large.png", "images/gallery/3dmax12_large.png");

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;
}