Prueba haci, falto el style. Pero prueba haci, con esta funcion:
Código html:
Ver original<a href="javascript:void(0);" onclick="toggle('contenedor');">Menu
</a> <div id="contenedor" style="display:none;"> opciones del menú
function toggle(id){
var dom=document.getElementById(id),display=dom.style.display;
dom.style.display=(display=='none')?'block':'none';
}