/* main.js */

function swapImage(imgId, newImg) {
	var i = document.getElementById(imgId);
	i.src = newImg;
}


