﻿jQuery(document).ready(function () {

    /* Main Menu DropDown */

    jQuery('#MainNavMenu li').children('.sub').hide();

    function makeTall() {
        jQuery(this).children('.sub').slideDown(100);
        jQuery(this).children('a').toggleClass('active');

    }
    function makeShort() {

        jQuery(this).children('.sub').hide();
        jQuery(this).children('a').toggleClass('active');
    }
    var config1 = {
        over: makeTall, // function = onMouseOver callback (REQUIRED)    
        timeout: 50, // number = milliseconds delay before onMouseOut    
        out: makeShort // function = onMouseOut callback (REQUIRED)    
    };
    jQuery('#MainNavMenu li').hoverIntent(config1);


    /* 4th Level DropDown */

    function showFour() {
        jQuery(this).children('.lvl3').slideDown(100);


    }

    function hideFour() {

        jQuery(this).children('.lvl3').slideUp(50);

    }
    var config2 = {
        over: showFour, // function = onMouseOver callback (REQUIRED)    
        timeout: 0, // number = milliseconds delay before onMouseOut    
        out: hideFour // function = onMouseOut callback (REQUIRED)    
    };
    jQuery('ul.lvl2 li').hoverIntent(config2);






});
