$(document).ready(function(){

    $("#navigation ul").hide();
        
    $("#navigation > li").hover(function(){
        $(this).find("a").addClass("hover");
        $(this).find("ul").fadeIn("fast");
    },function(){
        $(this).find("a").removeClass("hover");
        $(this).find("ul").fadeOut("fast");
    });

});