function setVisible(id) {
       
    oh = document.getElementById("header-right-div");
    ohdivs = oh.getElementsByTagName("div");
    myitem = document.getElementById("menutitle-" + id);


    if (myitem.style.border.match("4px.*")) {
        myitem.style.border="2px solid #a0a0a0";


        for (i = 0; i < ohdivs.length; i++) {
            d = ohdivs[i];
            if (d.id && d.id.match("menucontent.*")) {
                d.style.display = "none";
            }
            else if (d.id && d.id.match("menutitle.*")) {
                d.style.border="2px solid #a0a0a0";
            }       
        }
        
        
    }
    else {
        for (i = 0; i < ohdivs.length; i++) {
            d = ohdivs[i];
            if (d.id && d.id.match("menucontent.*")) {
                d.style.display = "none";
            }
            else if (d.id && d.id.match("menutitle.*")) {
                d.style.border="2px solid #a0a0a0";
            }       
        }
        myitem.style.border = "4px solid #822434";
        menu = document.getElementById("menucontent-" + id);
        menu.style.display = "block";
    }
}
