
$(document).ready(function(){

  $("#navigation ul li").hover(
    function(){
      $(this).addClass("hover").children("ul").css("display", "none").fadeIn("slow");
    },
    function()
    {
      $(this).removeClass("hover").children("ul").fadeOut("slow");
    }
  );

});
