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