window.onload = initLinks;

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

						