var obj = null;
var obj2 = null;

  function checkHover() {
      if (obj) {
         obj.children('ul').fadeOut('fast');
      } //if
   } //checkHover

   $(document).ready(function() {
      $('#Nav > li').hover(function() {
         if (obj) {
            obj.children('ul').fadeOut('slow');
            obj = null;
         } //if

         $(this).children('ul').fadeIn('fast');
      }, function() {
         obj = $(this);
         setTimeout(
            "checkHover()",
            400);
      });
   });
   
   
   
   function checkHover2() {
      if (obj2) {
         obj2.children('ul').fadeOut('fast');
      } //if
   } //checkHover

   $(document).ready(function() {
      $('.Menu > li').hover(function() {
         if (obj2) {
            obj2.children('ul').fadeOut('slow');
            obj2 = null;
         } //if

         $(this).children('ul').fadeIn('fast');
      }, function() {
         obj2 = $(this);
         setTimeout(
            "checkHover()",
            400);
      });
   });


