﻿/************************************************************
*
*  TL Site.js
*
*  Site global JS
*  This is where you do things that are specific to your site, but apply to all pages.  Master.js should not
*  be changed without review by other team members.
************************************************************/
$(document).ready(function(){initMenu();});

function initMenu() {
    var _li = $('#nav li');
    var _d = 400;
    _li.each(function() {
        var _this = $(this);
        var _drop = _this.find('div.drop');
        if (_drop.length) {
            _drop.h = _drop.outerHeight(true);
            _drop.css('height', 0);
        };
        _this.mouseenter(function() {
            $(this).addClass('hover');
            if (_drop.length) {
                _drop.animate({ height: _drop.h }, { duration: _d, queue: false });

            }
        }).mouseleave(function() {
            $(this).removeClass('hover');
            if (_drop.length) {
                _drop.animate({ height: 0 }, { duration: _d, queue: false });
            }
        });
    })
}
