// JavaScript Document

window.onload = initLinks;

var myPix = new Array("images/ohmout.jpg","images/ohmout01.jpg","images/ohmout02.jpg","images/ohmout03.jpg","images/ohminside.jpg","images/ohminside001.jpg","images/ohminside01.jpg","images/ohmposter01.jpg","images/ohmposter02.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;
}

						
