// JavaScript Document
//Swap portfolio images and captions

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