$(function () {
    $('.menu_top_green a').mouseenter(function () {
        $('.tooltip').stop(true, true).hide();
        $(this).children().filter('div').delay(200).fadeIn();
    });

    $('.menu_top_green a').mouseleave(function () {
        $(this).children().filter('div').delay(50).fadeOut();

    });
});
