//funzione onClick della Home

function choose(sezione) {
	var pag='templates/'+sezione+'.html'
$('#HomeCentrale').load(pag, function() {
	  //alert('Load was performed.');
	});
}


//funzione onMouseOver Home

function mouse(nome) {
	var pag='slide'+nome;
	//alert(pag);
$('#generale').load('templates/'+pag+'.html', function() {
	 // alert('Load was performed.');
	});
}


// Funzioni per le sedi

function mostraMappa(sede) {

	document.getElementById('mezzi').style.display='none';
	document.getElementById('qui').style.display='';
	document.getElementById('qui').src='immagini/foto/mappe/mappa'+sede+'.png';
}

function mostraMezzi() {

	document.getElementById('qui').style.display='none';
	document.getElementById('mezzi').style.display='';
}

function mostraStoria(sede) {
	document.getElementById('storia').style.display='';
	document.getElementById('INFOsede').style.display='none';
}

function mostraInfo() {
	document.getElementById('storia').style.display='none';
	document.getElementById('INFOsede').style.display='';
}


//Funzioni jQuery di load

function dai(link,nome){                 //LOAD NEL CONTENT
	//alert('arrivo alla funzione');
	$('#content').load(link, {'X': nome }, function() {
		 // alert('Load was performed.');
	});
}



function dai2(link,nome){              
	//alert('arrivo alla funzione');
	$('#info').load(link, {'X': nome }, function() {
		  //alert('Load was performed.');
	});
}


//Funzione cambia sede


function sedi(link,sede,sez){
	//alert(sez);
	$('#content').load(link, {'X': sede, 'sez': sez }, function() {
		  //alert('Load was performed.');
	});
}



























