window.onload = initLinks;

var myPix = new Array("kitchen-show/kitchen-remodel1.jpg","kitchen-show/kitchen-remodel2.jpg","kitchen-show/kitchen-remodel3.jpg","kitchen-show/kitchen-remodel4.jpg","kitchen-show/kitchen-remodel5.jpg","kitchen-show/kitchen-remodel6.jpg","kitchen-show/kitchen-remodel7.jpg","kitchen-show/kitchen-remodel8.jpg","kitchen-show/kitchen-remodel9.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;
}

						