$(document).ready(function() {
    $('a.Menu_Level2_First_Selected, a.Menu_Level2_Selected, a.Menu_Level2_Last_Selected, a.Menu_Level2_First_Last_Selected').each(function() {
        $('.Menu_bottom:first a').css('color', '#808080');
    });
});

$(document).ready(function() {
    $('.Faq .Top').click(function() {
        var next = $(this).next();
        var intro = $(this).find('.Intro');
        if (next.is(':hidden')) {
            intro.hide();
            next.slideDown(300);
        } else {
            next.slideUp(300, function() { intro.show(); });
        }
    });

    $('.Faq .Close').click(function() {
        var main = $(this).parent();
        main.slideUp(300, function() { main.prev().find('.Intro').show(); });
    });
});