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