﻿$(document).ready(function () {
    $('.L1_NavLink, #ctl00_vaLogo').click(function () {
        var $element = $(this);
        var $href = $element.attr('href');

        if ($href != null) {
            $element.removeAttr('href');

            $('#L2_NavLinkBox').stop();
            $('#L2_NavLinkBox').animate({
                height: 0
            }, '150');

            setTimeout(function () {
                $('#L2_NavLinkBox').css('display', 'none');
                window.location = $href;
            }, '200');
        }
    });
});
