//Stile testo menu
document.write("<style type='text/css'>");
document.write(".classe_menu a:link, .classe_menu a:visited {");
document.write("font-family:Verdana, Arial, Helvetica, sans-serif;");
document.write("font-size:12px;");
document.write("color:#999999;");
document.write("text-decoration: none;");
document.write("font-weight: none;");
document.write("}");

document.write(".classe_menu a:hover {");
document.write("font-family:Verdana, Arial, Helvetica, sans-serif;");
document.write("font-size:12px;");
document.write("color:#333333;");
document.write("text-decoration: none;");
document.write("font-weight: none;");
document.write("}");
document.write("</style>");

// Inizializzo la variabile identificativa dell'indirizzo della pagina corrente
var QUESTA_PAGINA = document.URL;

document.write("<div class='classe_menu'>");

if (QUESTA_PAGINA.indexOf("evo_modline.html") == (-1))
{
    // Stampo a video la voce della pagina NON corrente
    document.write("<a href='evo_modline.html'>MOD Line</a>");
} else {
    // Stampo a video la voce della pagina corrente evidenziata in grassetto
    document.write("<a href='evo_modline.html'><font color='#ff0000'>MOD Line</font></a>");
}

document.write("<div> ");

if (QUESTA_PAGINA.indexOf("evo_proline.html") == (-1))
{
    document.write("<a href='evo_proline.html'>PRO Line</a>");
} else {
    document.write("<a href='evo_proline.html'><font color='#ff0000'>PRO Line</font></a>");
}


document.write("<div> ");

if (QUESTA_PAGINA.indexOf("evo_dialine.html") == (-1))
{
    document.write("<a href='evo_dialine.html'>DIA Line</a>");
} else {
    document.write("<a href='evo_dialine.html'><font color='#ff0000'>DIA Line</font></a>");
	
}

document.write("</div>");

if (QUESTA_PAGINA.indexOf("pro_nxt.html") == (-1))
{
    document.write("<a href='pro_nxt.html'>PRO NXT</a>");
} else {
    document.write("<a href='pro_nxt.html'><font color='#ff0000'>PRO NXT</font></a>");
	
}

document.write("</div>");

if (QUESTA_PAGINA.indexOf("nxt_gear.html") == (-1))
{
    document.write("<a href='nxt_gear.html'>NXT Gear</a>");
} else {
    document.write("<a href='nxt_gear.html'><font color='#ff0000'>NXT Gear</font></a>");
	
}

document.write("</div>");


