// JavaScript Document

// image swapper
function swapPhoto(theTitle,theCaption) {

	var displayedTitle = document.getElementById("theTitle");
	displayedTitle.firstChild.nodeValue = theTitle;

	var displayedCaption = document.getElementById("caption");
	displayedCaption.firstChild.nodeValue = theCaption;

   
}