function showPhoto(img) {
	document.getElementById('photo-box').innerHTML = '<img src="'+img+'" border="0" />';
	document.getElementById('photo-box').innerHTML += '<span class="caption">Zum Schließen bitte auf das Bild klicken</span>';
	$('#backdrop').fadeIn("slow");
	$('#image-slideshow').fadeIn("slow");
}

function hidePhoto() {
	//alert('hello');
	$('#backdrop').fadeOut("slow");
	$('#image-slideshow').fadeOut("slow");
}
