function photo(name) {
	document.getElementById('picture').src='image_big/'+name;
}

function show(number) {
	$("#overlay").show("slow");
	$("#container").show();
	photo(number);
	$("#image").show();
}

function hide() {
	$("#overlay").hide("slow");
	$("#container").hide();
	$("#image").hide();
}
