// JavaScript Document



function swap(targetID){	 

if (document.getElementById)
	{
	target = document.getElementById(targetID);
		
		if (target.style.display == "none")
			{
			target.style.display = "block";
			}

		else
			{
			target.style.display = "none";
			}
		}
} 

function swapPhoto(photoSRC) {
document.images.imgPhoto.src = "images/" + photoSRC;
}

