
function loadIndex() {
	$("#sfondo").fadeIn(2000);
	$("#titolo").fadeIn(2000);
}
function clickIndex() {
	$("#index_sopra").slideUp(1000);
	$("#menu_sotto").slideDown(1000);
}


function loadPage() {
	$("#sfondo").fadeIn(1000);
	$("#menu_sotto").fadeIn(1000);
}

/*function loadImage(id) {
	image = new Image();
	image.src = "foto/"+id+".jpg";
}*/

function openPhoto(id) {
	$("#" + id).fadeIn(500);
	document.getElementById("pannello").setAttribute("style", "display:none");
	document.getElementById("sfondo").setAttribute("style", "display:none");
}

function closePhoto(id) {
	$("#" + id).fadeOut(500);
	document.getElementById("pannello").setAttribute("style", "");
	document.getElementById("sfondo").setAttribute("style", "");
}

function changePhoto(id1, id2) {
	$("#" + id2).fadeIn(500);
	$("#" + id1).fadeOut(500);
}
