function swap(imagePath, imageCaption) {
	var image = document.getElementById("enlarged");
	image.src = imagePath;
	var caption = document.getElementById("caption");
	caption.innerHTML = imageCaption;
}
