$(document).ready(function(){
    $("#nav ul li ul").hide();
    $('#nav ul li').hover(function(){
    $(this).children('ul').slideDown("slow");
    }, function(){
    $(this).children('ul').slideUp("slow");
  });
});
