jQuery(function () {
  jQuery('UL.drawers').accordion({
    // the drawer handle
    header: 'H2.drawer-handle',
    active: ".open", //element open by default
    
    // our selected class
    selectedClass: 'open',
    
    // match the Apple slide out effect
    event: 'mouseover'
  });
});

