// JavaScript Document

window.onload = initLinks;

var myPix = new Array("images/rodeo01.jpg","images/rodeo02.jpg","images/rodeo03.jpg","images/rodeo04.jpg","images/rodeo05.jpg","images/rodeo06.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;
}

						
