/*
   FUNZIONI PER LA COSTRUZIONE DELLA NAVIGAZIONE 
   SITO WWW.CANTUSFIRMUS.IT 
 
   Autore: Roberto Ghiglia 
*/ 

// variabili per costruzione linguette superiori
var x1 = 0; 
var	x2 = "f0"; 
var	x3 = 0; 
var	x4 = "f0"; 
var	x5 = 0; 
 
function flip(){
	indirizzo = location.pathname;
	// controlla se la pagina corrente è una delle 3 linguette
	if (indirizzo == "/contatti.php")
	{
	x1 = 1;
	x2 = "f2";
	x3 = 0;
	x4 = "f0";
	x5 = 0;
	}
	else if (indirizzo == "/mailing.php")
	{
	x1 = 0;
	x2 = "f1";
	x3 = 1;
	x4 = "f2";
	x5 = 0;
	}
	else if (indirizzo == "/mp3.php")
	{
	x1 = 0;
	x2 = "f0";
	x3 = 0;
	x4 = "f1";
	x5 = 1;
	}

	// costruisce le linguette
	if (x1==1){document.write('<img src="/im/contatti_on.gif" width="96" height="32" border="0" alt="per contattarci">')}
	else{document.write('<a href="/contatti.php"><img src="/im/contatti.gif" width="96" height="32" border="0" alt="per contattarci"></a>')};
    document.write('<img src="/im/'+x2+'.gif" width="13" height="32">');
    if (x3==1){document.write('<img src="/im/mailing_on.gif" width="70" height="32" border="0" alt="mailing list">')}
    else{document.write('<a href="/mailing.php"><img src="/im/mailing.gif" width="70" height="32" border="0" alt="mailing list"></a>')};
    document.write('<img src="/im/'+x4+'.gif" width="13" height="32">');
    if (x5==1){document.write('<img src="/im/mp3_on.gif" width="41" height="32" border="0" alt="mp3">')}
    else{document.write('<a href="/mp3.php"><img src="/im/mp3.gif" width="41" height="32" border="0" alt="mp3"></a>')};
}
