var MENU_TIMER = null;
var B_MENU_TIMER = null;

jQuery(function () {
	// CMS Dropdown Menu
    jQuery('#show_menu').mouseover(function() {
        if(MENU_TIMER) {
            window.clearTimeout(MENU_TIMER);
        	MENU_TIMER = null;
        }
        jQuery('#nav').slideDown(200);
    });

    jQuery('#show_menu').mouseout(function() {
        MENU_TIMER = window.setTimeout(function() {
            jQuery("#nav").slideUp(200);
        }, 500);
    });
	
	
	// CMS Bridemenu
    jQuery('#b_show_menu').mouseover(function() {
        if(B_MENU_TIMER) {
            window.clearTimeout(B_MENU_TIMER);
        	B_MENU_TIMER = null;
        }
        jQuery('#b_nav').slideDown(200);
    });

    jQuery('#b_show_menu').mouseout(function() {
        B_MENU_TIMER = window.setTimeout(function() {
            jQuery("#b_nav").slideUp(200);
        }, 500);
    });
});
