$(document).ready(function() {  
  var menuTimer;
  
  $('ul.pmL1 li:first, ul.pmL1 li.menuLogout').mouseenter(function() {
    $('ul.menu').fadeOut('fast');
  });
  
  $('ul.pmL1 li.first').mouseenter(function() {
    clearTimeout(menuTimer);
    $(this).siblings('.first').children().fadeOut("fast");
    $(this).children().fadeIn("fast");
  });
  
  $('ul.pmL1 li.first').mouseleave(function() {
    menuTimer = setTimeout(function(){
      hideMenu();
    },1000);
  });
  
  $('ul.menu li').hover(
    function () {
      $(this).children('span.more, ul.sub').show();
    },
    function () {
      $(this).children('span.more, ul.sub').hide();
    }
  );
  
  $('div.modules').mouseenter(function() {
    hideMenu();
  });
  
  function hideMenu() {
    $('ul.menu').fadeOut('fast');
  }
});
