function imageSwap(imageID, imageSource) {
	var theImage = document.getElementById(imageID);
	theImage.src = imageSource;
}