function loadPhoto(pid, imgId, lgId) {
	document.getElementById('i_'+imgId).src = "images/photos/"+pid+".jpg";
	document.getElementById('href_'+imgId).href = "images/photos/"+lgId+".jpg";
}

function showGallery(id) {
	document.getElementById('thumb_'+id).style.display = 'none';
	document.getElementById('gallery_'+id).style.display = 'block';
}

function hideGallery(id) {
	document.getElementById('thumb_'+id).style.display = 'block';
	document.getElementById('gallery_'+id).style.display = 'none';
}
