window.onload = initLinks;

var myPix = new Array("/lib/hitrunscore/1twadv.jpg","/lib/hitrunscore/2twadv.jpg","/lib/hitrunscore/3twadv.jpg","/lib/hitrunscore/4twadv.jpg","/lib/hitrunscore/5twadv.jpg","/lib/hitrunscore/6twadv.jpg","/lib/hitrunscore/7twadv.jpg","/lib/hitrunscore/8twadv.jpg");
var thisPic = 0;

function initLinks() {
	document.getElementById("prev_Link").onclick = processPrevious;
	document.getElementById("next_Link").onclick = processNext;
}

function processPrevious() {
	if (thisPic == 0) {
		thisPic = myPix.length;
	}
	thisPic--;
	document.getElementById("myPicture").src = myPix[thisPic];
	var t = parseInt(thisPic)+1
	document.getElementById("step").innerHTML = "Step &nbsp;" + t;
	return false;
}

function processNext() {
	thisPic++;
	if (thisPic == myPix.length) {
		thisPic = 0;
	}
	document.getElementById("myPicture").src = myPix[thisPic];
	var t = parseInt(thisPic)+1
	document.getElementById("step").innerHTML = "Step &nbsp;" + t++;
		return false;
}
