$(document).ready(function () {
    $(".MainMenu-level-2 li").each(function () {
        $(this).children(".SideMenuShadow").height($(this).outerHeight() + 2);
    });

    $(".MainMenu-level-2 li .SideMenuShadow").css("display", "block");
    $(".MainMenu-level-2 li:last-child .BottomMenuShadow").css("display", "block");

    $(".MainMenu-level-3 li").each(function () {
        $(this).children(".SideMenuShadow").height($(this).outerHeight() + 2);
    });

    $(".MainMenu-level-3 li .SideMenuShadow").css("display", "block");
    $(".MainMenu-level-3 li:last-child .BottomMenuShadow").css("display", "block");

    $(".SideMenu-level-2 li:last-child .BottomMenuShadow").css("display", "block");
});
