function initMenus() {
 $('.menu > div > div').not('.title').hide();
 $('.menu .title a').click(
  function() {
   var contents = $(this).parent().next();

   var speed = 100;

   if(contents.is(':visible')) { // hide
    contents.filter(':visible').slideUp(speed);
    return false;
   }
   if(!contents.is(':visible')) { // show
    contents.slideDown(speed);
    return false;
   }

  }
 );
}

$(initMenus);