$(document).ready(function(){
$("#menu dl").children("dd").hide();
$("#menu dl").hover(
   function () { $(this).children("dd").fadeIn("slow"); },
   function () { $(this).children("dd").fadeOut(700); });
});

