$(document).ready(function () {
      $('LI.drawer UL:not(:first)').hide(); 
      $('H2.drawer-handle').click(function () {
              $('LI.drawer UL:visible').slideUp().prev().removeClass('open');
        $(this).addClass('open').next().slideDown();
      });
    });
