// JavaScript Document

// text swapper
function swapText(theTitle,theCaption) {

	var displayedTitle = document.getElementById("theTitle");
	displayedTitle.firstChild.nodeValue = theTitle;

	var displayedCaption = document.getElementById("theCaption");
	displayedCaption.firstChild.nodeValue = theCaption;

}
