
window.addEvent('domready', function(){
var menBox = $$('.toggle'); //*the toggle is the class set to the toggle div*//
var menBoxOpen = $$('.slide'); //*the menu section*//
var menAccordion = new Accordion(   //*this tells mootools its creating a new accordion.*//
  menBox, menBoxOpen, {
    duration: 500,    //*this is how fast your accordion goes down and up.*//
    opacity: false,   //*leave this alone, trust Me*//
    alwaysHide: true  //*this tells all menus sections to be closed when the page loads*//
  });
});