// JavaScript Document
// Inizializzo la variabile identificativa dell'indirizzo della pagina corrente
var QUESTA_PAGINA = document.URL;

document.write("<div>");

if (QUESTA_PAGINA.indexOf("index.php") == (-1))
{
    // Stampo a video la voce della pagina NON corrente
    document.write(":: <a href='index.php'>homepage</a>");
}
else
{
    // Stampo a video la voce della pagina corrente evidenziata in grassetto
    document.write("::<a href='index.php'><b>homepage<b></a>");
}

document.write("<br> <br>");

if (QUESTA_PAGINA.indexOf("gallery.php") == (-1))
{
    document.write(":: <a href='gallery.php'>gallery</a>");
}
else
{
    document.write("::<a href='gallery.php'><b>gallery</b></a>");
}

document.write("<br> <br>");

if (QUESTA_PAGINA.indexOf("menu.php") == (-1))
{
    document.write(":: <a href='menu.php'>menu</a>");
}
else
{
    document.write(":: <a href='menu.php'><b>menu</a></b>");
}

document.write("<br> <br>");

if (QUESTA_PAGINA.indexOf("cantina.php") == (-1))
{
    document.write(":: <a href='cantina.php'>vini</a>");
}
else
{
    document.write(":: <a href='cantina.php'><b>vini</b></a>");
}

document.write("<br> <br>");

if (QUESTA_PAGINA.indexOf("ricevimenti.php") == (-1))
{
    document.write(":: <a href='ricevimenti.php'>ricevimenti</a>");
}
else
{
    document.write(":: <a href='ricevimenti.php'><b>ricevimenti</a></b>");
}

document.write("<br> <br>");

if (QUESTA_PAGINA.indexOf("news.php") == (-1))
{
    document.write(":: <a href='news.php'>info &amp; news</a>");
}
else
{
    document.write(":: <a href='news.php'><b>info &amp; news</b></a>");
}

document.write("<br> <br>");

if (QUESTA_PAGINA.indexOf("dove siamo.php") == (-1))
{
    document.write(":: <a href='dove-siamo.php'>dove siamo</a>");
}
else
{
    document.write(":: <a href='dove-siamo.php'><b>dove siamo</b></a>");
}
document.write("<br> <br>");

if (QUESTA_PAGINA.indexOf("contatti.php") == (-1))
{
    document.write(":: <a href='contatti.php'>contatti</a>");
}
else
{
    document.write(":: <a href='contatti.php'><b>contatti</b></a>");
}

document.write("</div>");






