function mostraMenu(menuCorrente,menuRadice) {
     
     questoMenu = document.getElementById(menuCorrente).style;
     altroMenu= document.getElementById(menuRadice).style;
     
     if (questoMenu.display == "block") {
         questoMenu.display = "none";
         altroMenu.background = "url('images/structure-images/vbuttons_+.png') no-repeat top left";
     }
     
     else {
         questoMenu.display = "block";
         altroMenu.background = "url('images/structure-images/vbuttons_-.png') no-repeat top left";
     }
}