function swapPhoto(photoSRC,theTitle) 
	{
	var displayedCaption = document.getElementById("theTitle");
	displayedCaption.firstChild.nodeValue = theTitle;

    document.images.imgPhoto.src = "assets/" + photoSRC;
	
    }