/*
Slideshow Control Version 1
Users select main photograph by clicking on thimbnails
*/

function SwapMain(ImChange) {
	document.getElementById("main_photo").src=ImChange;
}

function HighlightSelection(Tnum) {
	document.getElementById(Tnum).style.borderColor="#639835";
}

function ReturnSelection(Tnum) {
	document.getElementById(Tnum).style.borderColor="#9a712f";
}

