function changeText(el, text)
{
	document.getElementById(el).innerText = text;
}
function showPhoto(index)
{
	photo = document.getElementById("galleryPhoto");
	photo.innerHTML = "<img src='img/gallery/photo"+index+".jpg' />";
}
