﻿/*************************************************************************
****  CODE COPYRIGHT 2010, Aevi Incorporated. All Rights Reserved.
****  Reproduction without authorization is strictly prohibited.
**************************************************************************/

$(document).ready(function() {
    $('#header .menu .topLevel').hover(
        function() {
            var pos = $(this).position();
            $(this).next('.subMenu').css({ left: pos.left - 1, top: pos.top + $(this).outerHeight() - 1 });
            var eleOpacity = $(this).next('.subMenu').css('opacity');
            var eleDisplay = $(this).next('.subMenu').css('display');
            if (eleDisplay != 'none' && eleOpacity != null) {
                $('#header .menu .subMenu').stop(true, false);
                $(this).next('.subMenu').fadeTo(100, 1);
            } else {
                $(this).next('.subMenu').slideDown(161);
            }
        },
        function() {
            $('#header .menu .subMenu').stop(true, true);
            $(this).next('.subMenu').fadeOut(220);
        }
    );
    $('#header .menu .subMenu').hover(
        function() {
            var eleOpacity = $(this).css('opacity');
            var eleDisplay = $(this).css('display');
            if (eleDisplay != 'none' && eleOpacity != null) {
                $('#header .menu .subMenu').stop(true, false);
                $(this).fadeTo(100, 1);
            } else {
                $(this).show();
            }
        },
        function() {
            $('#header .menu .subMenu').stop(true, true);
            $(this).fadeOut(161);
        }
    );
});