// JavaScript Document

window.onload = initLinks;

var myPix = new Array("../images/gallery/carousel/carousellarge1.jpg","../images/gallery/carousel/carousellarge2.jpg","../images/gallery/carousel/carousellarge3.jpg","../images/gallery/carousel/carousellarge4.jpg","../images/gallery/carousel/carousellarge5.jpg","../images/gallery/carousel/carousellarge6.jpg","../images/gallery/carousel/carousellarge7.jpg","../images/gallery/carousel/carousellarge8.jpg","../images/gallery/carousel/carousellarge9.jpg","../images/gallery/carousel/carousellarge10.jpg","../images/gallery/carousel/carousellarge11.jpg","../images/gallery/carousel/carousellarge12.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("carouselMain").src = myPix[thisPic];
	return false;
}

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

function replaceSmallshot1() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge1.jpg"
	return false;
}

function replaceSmallshot2() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge2.jpg"
	return false;
}

function replaceSmallshot3() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge3.jpg"
	return false;
}

function replaceSmallshot4() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge4.jpg"
	return false;
}

function replaceSmallshot5() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge5.jpg"
	return false;
}

function replaceSmallshot6() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge6.jpg"
	return false;
}

function replaceSmallshot7() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge7.jpg"
	return false;
}

function replaceSmallshot8() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge8.jpg"
	return false;
}

function replaceSmallshot9() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge9.jpg"
	return false;
}

function replaceSmallshot10() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge10.jpg"
	return false;
}

function replaceSmallshot11() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge11.jpg"
	return false;
}

function replaceSmallshot12() {
	document.getElementById("carouselMain").src = "../images/gallery/carousel/carousellarge12.jpg"
	return false;
}





