$(
  function() {
   $('#menul a.root').each(
    function(i) {
     var el = $('ul', $(this).parent());
     $(this).hover(
      function() {
       $('#menul ul:visible').hide('fast');
       el.show();
       el.hover(
        function() {},
        function() {
         $(this).hide('fast');
        }
       );
      },
      function() {}
     );
    }
   )
    }
 );