(function($) {
        $(document).ready(function() {
                /* MENU
                ---------------- */
                function showSecondLevel(){
                        $(this).children(".secondDropdown").show();
                        $(this).addClass("hover");
                }
                function hideSecondLevel(){
                        $(this).children(".secondDropdown").fadeOut("slow");
                        $(this).removeClass("hover");
                }

                var config = {
                sensitivity: 5,
                interval: 100,
                over: showSecondLevel,
                timeout: 400,
                out: hideSecondLevel
                };

                $("#primarynav .nav li.level1").hoverIntent(config);
        })
})(jQuery);
