// JavaScript Document
window.onload = initLinks;

var myPix = new Array("images/phohor_1horses02.gif","images/phohor_ranch01.jpg","images/phohor_ranch03.jpg","images/phohor_ranch06.jpg","images/phohor_ranch05.jpg","images/phohor_ranch09.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;
}

						
