/* Script available free online at http://lukeonweb.net
created by: Luca Ruggiero */

var QUESTA_PAGINA = document.URL;
document.write("<div>");

if (QUESTA_PAGINA.indexOf("home.html") == (-1))
{
    document.write("<a href='home.html'>HOME</a>");
}
else
{
    document.write("<a href='home.html'><font color='#4c4c4c'><b>HOME</b></font></a>");
}

document.write("<br />");

if (QUESTA_PAGINA.indexOf("work.html") == (-1))
{
    document.write("<a href='work.html'>WORK</a>");
}
else
{
    document.write("<a href='work.html'><font color='#4c4c4c'><b>WORK</b></font></a>");
}

document.write("<br />");

if (QUESTA_PAGINA.indexOf("exhibitions.html") == (-1))
{
    document.write("<a href='exhibitions.html'>EXHIBITIONS</a>");
}
else
{
    document.write("<a href='exhibitions.html'><font color='#4c4c4c'><b>EXHIBITIONS</b></font></a>");
}
document.write("<br />");

if (QUESTA_PAGINA.indexOf("biography.html") == (-1))
{
    document.write("<a href='biography.html'>BIOGRAPHY</a>");
}
else
{
    document.write("<a href='biography.html'><font color='#4c4c4c'><b>BIOGRAPHY</b></font></a>");
}

document.write("<br />");

if (QUESTA_PAGINA.indexOf("contact.html") == (-1))
{
    document.write("<a href='contact.html'>CONTACT</a>");
}
else
{
    document.write("<a href='contact.html'><font color='#4c4c4c'><b>CONTACT</b></font></a>");
}

document.write("</div>");