$(function(){
    var timer;
    
    $('.drop-trigger').hover(
        function(){
            var _this = $(this);
            var tertNavId = '#' + _this.attr('id').replace('-t', '-l');
            
            if(timer) {
                clearTimeout(timer);
                timer = null
            }
            timer = setTimeout(function() {
                $('.drop-trigger').removeClass('active');
                _this.addClass('active');
                
                $('#tertiary-nav').slideDown(300);
                $('#tertiary-nav ul').hide();
                $(tertNavId).fadeIn('fast');
            }, 200);
        },
        
        function(){
            clearTimeout(timer);                
        }
    );
    
    $('#tertiary-nav').hover(
        function(){
        
        },
        function(){
            if(timer) {
                clearTimeout(timer);
                timer = null
            }
            timer = setTimeout(function() {
                $('#tertiary-nav').slideUp(400);
                $('.drop-trigger').removeClass('active');
            }, 500);
        }
    );

});
