    $(document).ready(function() {
      $('#menu li').hover(
        function () {
          $(this).fadeOut('fast');
          $(this).fadeIn('slow');
        },
        function () {
          $(this).show();
        }
      );
    });

