function imageSwap(imageID, imageName) {
	var imagePath = "images/";
	document.getElementById(imageID).src = imagePath + imageName;
}


