function Menu(id)
{
    var e = document.getElementById(id);
    var a = document.getElementById("MENU").
            getElementsByTagName("span");
    if (e.style.display != "Block")
    {
        for (var i=0; i<a.length; i++)
        {
            if (a[i].className == "VOCI")
            {
                a[i].style.display = "None";
            }
        }
        e.style.display = "Block";
    }
    else
    {
        e.style.display = "None";
    }
}


function printMenu() {

document.write("<a class=\"menu\" href=\"bambini.html\">Giochi Bambini</a><br>"); 
document.write("<a class=\"menu\" href=\"bambine.html\">Giochi Bambine</a><br>"); 
document.write("<a class=\"menu\" href=\"statico.html\">Modellismo Statico</a><br>"); 
document.write("<a class=\"menu\" href=\"dinamico.html\">Modellismo Dinamico</a><br>"); 
}

printMenu();
