window.onload = initLinks;

var myPix = new Array("images/917tb_ext_night.jpg","images/917tb_frnt.jpg","images/917tb_clock.jpg","images/917tb_int1.jpg","images/917tb_int2.jpg","images/917tb_int3.jpg","images/point_ext2.jpg","images/point_gate.jpg","images/point_lamp.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("commercial").src = myPix[thisPic];
	return false;
}

function processNext() {
	thisPic++;
	if (thisPic == myPix.length) {
		thisPic = 0;
	}
	document.getElementById("commercial").src = myPix[thisPic];
	return false;
}

						
