function changeImage(destination, sourceImg) {
			var toChange=document.getElementById(destination);
				toChange.src=sourceImg;
			}
