// JavaScript Document

// swap image and caption

function swapPhoto(photoSRC, theCaption_1, theCaption_2, theCaption_3, theCaption_4, thePrice) 
{
	var displayedCaption_1 = document.getElementById("caption_1");
	var displayedCaption_2 = document.getElementById("caption_2");
	var displayedCaption_3 = document.getElementById("caption_3");
	var displayedCaption_4 = document.getElementById("caption_4");
	
	//displayedCaption_1.firstChild.nodeValue = theCaption_1;
	//displayedCaption_2.firstChild.nodeValue = theCaption_2;
	//displayedCaption_3.firstChild.nodeValue = theCaption_3;
	//displayedCaption_4.firstChild.nodeValue = theCaption_4;
	displayedCaption_1.innerHTML = theCaption_1;
	displayedCaption_2.innerHTML = theCaption_2;
	displayedCaption_3.innerHTML = theCaption_3;
	displayedCaption_4.innerHTML = theCaption_4;
	

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

