$(document).ready(function(){
      $("#topmenu ul ul").hide(0);
});

$(document).ready(function(){
      $("#topmenu ul ul ul").hide(0);
});

$(document).ready(function(){
      $("#topmenu ul ul ul ul").hide(0);
});


$(document).ready(function(){
      $("#topmenu ul li").hover(
      function(){
         $(this).children("ul").fadeIn(600);
      }, 
      function(){
         $(this).children("ul").fadeOut(600);
      }
      );
});