// swap image and caption 

function swapPhoto(photoSRC,theCaption) {

	var displayedCaption = document.getElementById("caption");
	displayedCaption.firstChild.nodeValue = theCaption;
    document.images.imgphoto.src = "gallery/" + photoSRC;
}
