
/* ---------------------------------------------------------------------*/
/* ---------------------------------------------------------------------*/

$(document).ready(function() {

    function addMenu() {
        $(this).addClass("over");
        $($(this).find("ul")).fadeIn("fast");
    }

    function removeMenu() {
        $(this).removeClass("over");
        $($(this).find("ul")).fadeOut("fast");
    }

    $("div#nav ul li").hover(addMenu, removeMenu);;

});
