/*script per i tooltip*/

window.onload=enableTooltips;

function enableTooltips(){
var links=document.getElementsByTagName("a");
for(i=0;i<links.length;i++){
    t=links[i].getAttribute("title");
    if(t!=""){
        links[i].removeAttribute("title");
        links[i].style.position="relative";
        tooltip=document.createElement("div");
        tooltip.className="tooltip";
        tooltip.style.display="none";
        tooltip.appendChild(document.createTextNode(t));
        links[i].appendChild(tooltip);
        links[i].onmouseover=showTooltip;
        links[i].onmouseout=hideTooltip;
        }
    }
}

function showTooltip(event){
    this.style.zIndex="25";
    this.getElementsByTagName("div")[0].style.display="block";
    }

function hideTooltip(event){
    this.style.zIndex="24";
    this.getElementsByTagName("div")[0].style.display="none";
    }

/*script per il menù intelligente*/

var QUESTA_PAGINA = document.URL;
var INDIR = "../";

document.write("<div class='menu'>");
document.write("<h3>Il Gruppo</h3>");
document.write("<p align=left>");

document.write("<a href='../index.php' TITLE='Home Page'>Home Page</a>");
document.write('<BR>')
document.write("<a href='" + INDIR + "Pagine_html/LaNostraStoria.php' title='Troverai notizie del nostro gruppo e le schede (con foto) dei Soci fondatori'>La nostra storia</a>");

document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("I_Nostri_Maestri.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/I_Nostri_Maestri.php' title='Qui troverai i link alle pagine dei nostri maestri della magia, con foto e notizie'>I nostri Maestri</a>");
     }   else  {
       document.write("<font color='red'><b>I nostri Maestri</b ></font>");
    }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("StenoSchaffer.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/StenoSchaffer.php' title='La pagina di Steno Schaffer'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Steno Schaffer</a>");
     }   else  {
       document.write("<font color='red'><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Steno Schaffer</b ></font>");
    }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("GinoChetta.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/GinoChetta.php' title='La pagina di Gino Chetta'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gino Chetta</a>");
     }   else  {
       document.write("<font color='red'><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gino Chetta</b ></font>");
    }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("MarinoGiberna.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/MarinoGiberna.php' title='La pagina di Marino Giberna'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Marino Giberna</a>");
     }   else  {
       document.write("<font color='red'><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Marino Giberna</b ></font>");
    }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("ConsiglioDirettivo.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/ConsiglioDirettivo.php' title='Attuale composizione del Consiglio Direttivo'>Il Direttivo</a>");
     }   else  {
       document.write("<font color='red'><b>Il Direttivo</b ></font>");
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("ScuolaPresenta.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/ScuolaPresenta.php' title='Se sei interessato a conoscere i segreti della prestigiazione, segui questo percorso'>Scuola della Magia</a>");
     }   else  {
       document.write("<font color='red'><b>Scuola della Magia</b ></font>");
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("Eventi_Spettacoli_Magici.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/Eventi_Spettacoli_Magici.php' title='Vieni a conoscere le nostre attività'>Attività del Gruppo</a>");
     }   else  {
       document.write("<font color='red'><b>Attività del Gruppo</b ></font>");
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("ProposteMagiche.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/ProposteMagiche.php' title='Vieni a conoscere le nostre proposte'>I nostri servizi</a>");
     }   else  {
       document.write("<font color='red'><b>I nostri servizi</b ></font>");
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("indexGallery.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Gallery/indexGallery.php' title='Guarda le ultime foto dei nostri spettacoli'>Album fotografico</a>");
     }   else  {
       document.write("<font color='red'><b>Album fotografico</b ></font>");
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("Contatti.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/Contatti.php' title='Dove puoi venire a trovarci e la possibilità di scriverci'>Contatti</a>");
     }   else  {
       document.write("<font color='red'><b>Contatti</b ></font>");
     }
document.write("</div>");