// JavaScript Document

window.onload = initLinks;

var myPix = new Array("../images/gallery/fiddler/fiddler1large.jpg","../images/gallery/fiddler/fiddler2large.jpg","../images/gallery/fiddler/fiddler3large.jpg","../images/gallery/fiddler/fiddler4large.jpg","../images/gallery/fiddler/fiddler5large.jpg","../images/gallery/fiddler/fiddler6large.jpg","../images/gallery/fiddler/fiddler7large.jpg","../images/gallery/fiddler/fiddler8large.jpg","../images/gallery/fiddler/fiddler9large.jpg","../images/gallery/fiddler/fiddler10large.jpg","../images/gallery/fiddler/fiddler11large.jpg","../images/gallery/fiddler/fiddler12large.jpg");
var thisPic = 0;

function initLinks() {
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
	document.getElementById("smallshot1").onclick = replaceSmallshot1;
	document.getElementById("smallshot2").onclick = replaceSmallshot2;
	document.getElementById("smallshot3").onclick = replaceSmallshot3;
	document.getElementById("smallshot4").onclick = replaceSmallshot4;
	document.getElementById("smallshot5").onclick = replaceSmallshot5;
	document.getElementById("smallshot6").onclick = replaceSmallshot6;
	document.getElementById("smallshot7").onclick = replaceSmallshot7;
	document.getElementById("smallshot8").onclick = replaceSmallshot8;
	document.getElementById("smallshot9").onclick = replaceSmallshot9;
	document.getElementById("smallshot10").onclick = replaceSmallshot10;
	document.getElementById("smallshot11").onclick = replaceSmallshot11;
	document.getElementById("smallshot12").onclick = replaceSmallshot12;
}

function processPrevious() {
	if (thisPic == 0) {
		thisPic = myPix.length;
	}
	thisPic--;
	document.getElementById("fiddlerMain").src = myPix[thisPic];
	return false;
}

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

function replaceSmallshot1() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler1large.jpg"
	return false;
}

function replaceSmallshot2() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler2large.jpg"
	return false;
}

function replaceSmallshot3() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler3large.jpg"
	return false;
}

function replaceSmallshot4() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler4large.jpg"
	return false;
}

function replaceSmallshot5() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler5large.jpg"
	return false;
}

function replaceSmallshot6() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler6large.jpg"
	return false;
}

function replaceSmallshot7() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler7large.jpg"
	return false;
}

function replaceSmallshot8() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler8large.jpg"
	return false;
}

function replaceSmallshot9() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler9large.jpg"
	return false;
}

function replaceSmallshot10() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler10large.jpg"
	return false;
}

function replaceSmallshot11() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler11large.jpg"
	return false;
}

function replaceSmallshot12() {
	document.getElementById("fiddlerMain").src = "../images/gallery/fiddler/fiddler12large.jpg"
	return false;
}





