// Image swap

		function swap(imagePath, msg){
			document.getElementById('large').src=imagePath;
			
			var caption=document.getElementById('caption');
			while (caption.firstChild)
				caption.removeChild(caption.firstChild);
			caption.appendChild(document.createTextNode(msg));
		}

