var opened="";

function closeGallery(){
	for (i=1; i<=7; i++){
		document.getElementById("galleria"+i).style.display="none";
	}
	for (i=1; i<=15; i++){
		document.getElementById("galleria"+i+"Gara").style.display="none";
	}
	for (i=1; i<=1; i++){
		document.getElementById("galleria"+i+"Video").style.display="none";
	}
}

function closeDiv(id){
	document.getElementById("contatti").style.display="none";
	document.getElementById("chiSiamo").style.display="none";
}

function openDiv(id){
	closeDiv("all");
	document.getElementById(id).style.display="block";
}

function nascondiDiv(id){
	document.getElementById(id).style.display="none";
}

function visualizzaDiv(id){
	document.getElementById(id).style.display="block";
}

function veicoliOpenDiv(id){
	if (document.getElementById(id).style.display!="block"){
		nascondiDiv("galleriaProto");
		nascondiDiv("galleriaStock");
		nascondiDiv("schedaProto");
		nascondiDiv("schedaStock");		
		visualizzaDiv(id);
	}
	else
		nascondiDiv(id);
}

function openGallery(id,foto){				//OLD
	foto="foto/zoom/"+foto+".jpg";
	if (document.getElementById(id).style.display=="block") {
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
	}
	else{
		closeGallery();
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
		document.getElementById(id).style.display="block";
	}
}

function openZoom(id,foto){
	foto="../public/zoom/"+foto;
	if (document.getElementById(id).style.display=="block") {
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
	}
	else{
		if (opened!="") closeZoom(opened);
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
		document.getElementById(id).style.display="block";
	}
	opened=id;
}

function openZoomVeicolo(id,foto){
	foto="../public/zoom_veicolo/"+foto;
	if (document.getElementById(id).style.display=="block") {
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
	}
	else{
		if (opened!="") closeZoom(opened);
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
		document.getElementById(id).style.display="block";
	}
	opened=id;
}

function openZoomAdmin(id,foto){
	foto="../public/zoom/"+foto;
	if (document.getElementById(id).style.display=="block") {
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
	}
	else{
		if (opened!="") closeZoom(opened);
		//immagine=document.getElementById(id).getElementsByTagName("img")[0].setAttribute('src', foto);
		immagine=document.getElementById(id).style.background="url("+foto+")";
		document.getElementById(id).style.display="block";
	}
	opened=id;
}

function closeZoom(id){
	document.getElementById(id).style.display="none";
}

function closeZoomOpened(){
	document.getElementById(opened).style.display="none";
}

function openVideo(id,foto){
	closeGallery();
	document.getElementById(id).style.display="block";
}

function switchBiografia(id){
	if (document.getElementById(id).style.display=='block'){
		document.getElementById(id).style.display='none';
		document.getElementById(id+"_link").innerHTML="apri"
	}
	else{
		document.getElementById(id).style.display='block'
		document.getElementById(id+"_link").innerHTML="chiudi"
	}	
}
