// JavaScript Document
function swapPhoto(photoSRC,theCaption) {
	var displayedCaption = document.getElementById("caption");
	displayedCaption.firstChild.nodeValue = theCaption;

    document.images.imgPhoto.src = "img/" + photoSRC;
    }
	
	// JavaScript Document
function swapPhotoNew(photoSRC,theCaption) {
	var displayedCaption = document.getElementById("caption");
	displayedCaption.firstChild.nodeValue = theCaption;

    document.images.imgPhoto.src = photoSRC;
    }
