$(function () {

    //$('.DynamicDropDown > li > .DynamicDropDown').

    $('.DynamicDropDown.MenuDepth1 > li').hover(function (event) {
        
        
        $(this).children('.DynamicDropDown').animate({
            opacity: 1,
            width: 'show',
            right: -65,
        },
        'fast', function () {  });
    },
    function (event) {


        $(this).children('.DynamicDropDown').animate({
            opacity: 0,
            width: 'hide',
            right: 5,
        },
        'fast', function () { });

    }).children('.DynamicDropDown').animate({
            opacity: 0,
            width: 'hide',
            right: 5,
        },
        1, function () { });

    $('.MenuDepth0 > li').hover(function (event) {

        $(this).children('.DynamicDropDown').slideDown('fast');
    },
    function (event) {

        $(this).children('.DynamicDropDown').slideUp('fast');

    }).children('.DynamicDropDown.MenuDepth1').hide();
});
    
