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