// JavaScript Document


function swapPhoto(theCaption, photoSRC) {
	var displayedCaption = document.getElementById("caption");
	displayedCaption.firstChild.nodeValue = theCaption;
	
	document.images.imgPhoto.src = photoSRC;
}