// JavaScript Document
jQuery(document).ready(function(){
    /** Top Menu **/
    /** Hide Menus on load **/
    jQuery('.menu-main-menu-container ul li ul').hide();

    /** Dropdown - level 2 **/
	jQuery('.menu-main-menu-container ul li').hover(
        //OnHover
        function(){
            //Hide Other Menus
            jQuery('.menu-main-menu-container ul li ul li').not(jQuery('ul', this)).stop();
            // Show Hoved Menu
            jQuery('ul', this).show(/*'blind',150*/);
        },
        //OnOut
        function(){
            // Hide Other Menus
            jQuery('ul', this).hide(/*'blind',150*/);
        }
    );

    /** Dropdown - level 3 **/
    jQuery('.menu-main-menu-container ul li ul li').hover(
        //OnHover
        function(){
            //Hide Other Menus
            jQuery('.menu-main-menu-container ul li ul li ul li').not(jQuery('ul', this)).stop();
            // Show Hoved Menu
            // jQuery('ul', this).slideDown();
			jQuery('ul', this).show();
        },
        //OnOut
        function(){
            // Hide Other Menus
            // jQuery('ul', this).slideUp();
			jQuery('ul', this).hide();
        }
    );
});

