//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("cla_dc_ferrite.html") == (-1))
{
    // Stampo a video la voce della pagina NON corrente
    document.write("<a href='cla_dc_ferrite.html'>DC Servo Ferrite</a>");
} else {
    // Stampo a video la voce della pagina corrente evidenziata in grassetto
    document.write("<a href='cla_dc_ferrite.html'><font color='#0a457a'>DC Servo Ferrite</font></a>");
}

document.write("<div> ");

if (QUESTA_PAGINA.indexOf("cla_dc_neodimio.html") == (-1))
{
    document.write("<a href='cla_dc_neodimio.html'>DC Servo NdFeB</a>");
} else {
    document.write("<a href='cla_dc_neodimio.html'><font color='#0a457a'>DC Servo NdFeB</font></a>");
}


document.write("<div> ");

if (QUESTA_PAGINA.indexOf("cla_riduttori.html") == (-1))
{
    document.write("<a href='cla_riduttori.html'>Planetary Gearboxes</a>");
} else {
    document.write("<a href='cla_riduttori.html'><font color='#0a457a'>Planetary Gearboxes</font></a>");
	
}

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


