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