function initMenu() {
  $('#menu ul').hide();
  $('#menu li').mouseover(
    function() {
        jQuery("ul:first", this).stop(true, true).delay(300).slideDown('normal');	
      }
    );
  $('#menu li').mouseout(
    function() {
        jQuery("ul:first", this).stop(true, true).delay(800).slideUp('normal');	
      }
    );
  }

