function domSwap(imageSrc, imageName) {
	theImg = document.getElementById(imageName);
	theImg.src = "images/" + imageSrc;
}

function domSwapBack(imageSrc, imageName) {
	theImg = document.getElementById(imageName);
	theImg.setAttribute("src", "images/" + imageSrc);
}