<!--

//switches image thumbnails & descriptions
function imgSwap(imgId, imgSrc) {
	document.getElementById("swapText" + imgId);
	var swappedImg = document.getElementById("swap" + imgId);
	swappedImg.src = "./assets/" + imgSrc + ".jpg";
	swappedImg.alt = imgSrc;
}

//highlights changing thumbnail
function imgLight(imgId) {
	document.getElementById("swap" + imgId).style.border = "solid 2px #97b";
}

//returns original thumbnail state
function imgUnLight(imgId) {
	document.getElementById("swap" + imgId).style.border = "solid 2px #e1cba3";
}

//-->