/* The following CSS code will hide menubar
and show them again if you move the cursor to menubar */

/* begin css */

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#toolbar-menubar{
  display: none;
}

#navigator-toolbox:hover > #toolbar-menubar{
  display: -moz-box;
}

/* end css */