/*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>");

   if (QUESTA_PAGINA.indexOf("index.php") == (-1))
     {
                // Stampo a video la voce della pagina NON corrente
       document.write("<a href='../index.php' TITLE='Home Page'>Home Page</a>");
     }   else  {
               // Stampo a video la voce della pagina corrente evidenziata in grassetto
       document.write("<font color='red'><b>Home Page</b ></font>");
       var INDIR = './';
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("LaNostraStoria") == (-1))
     {
       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>");
     }   else  {
       document.write("<font color='red'><b>La nostra storia</b ></font>");
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("I_Nostri_Maestri.php") == (-1))
     {
       document.write("<a href='" + INDIR + "Pagine_html/I_Nostri_Maestri.php' title='Troverai le schede (con foto) dei nostri Maestri'>I Nostri Maestri</a>");
     }   else  {
       document.write("<font color='red'><b>I Nostri Maestri</b ></font>");
     }
document.write('<BR>')
   if (QUESTA_PAGINA.indexOf("Medagliere.php") == (-1))
     {
       document.write("<IMG src='" + INDIR + "File_gif_jpg/New060.gif'>&nbsp;"); 
       document.write("<a href='" + INDIR + "Pagine_html/Medagliere.php' title='Premi vinti dai nostri Soci'>Il Medagliere</a>");
     }   else  {
       document.write("<font color='red'><b>Il nostro Medagliere</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à'>Spettacoli ed eventi</a>");
     }   else  {
       document.write("<font color='red'><b>Spettacoli ed eventi</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>");