function swapPhoto(photoSRC) {
    document.images.imgPhoto.src = "../images/" + photoSRC;
}
function swapCaption(text) {
	document.getElementById('description').firstChild.nodeValue=text;
}
