function changePhoto(photo,label)
{
	document.getElementById("photo").src =  imageArray[photo];
	
	if (label == undefined)
	{
		label = "";
	}
	document.getElementById("caption1").innerHTML = captionArray[photo];
}

