﻿$(document).ready(function() {
    $("#nav > li").hover(
        function() {
            $(this).addClass("hover");
            $(".megamenuwrapper", this).css({ display: "none" }).slideDown(250);
        },
        function() {
            $(this).removeClass("hover");
            $(".megamenuwrapper", this).css({ display: "none" });
        }
    );
});
