function hide_topics() {
    $('.about_topic').hide();
}

function remove_classes(id_to_protect) {
    id_to_protect += '_link';
    $('.about_tab').each( function() {
        if($(this).attr('id') != id_to_protect) {
            $(this).removeClass('open');
            $(this).addClass('close');
        }
    });
}

$(document).ready( function() {
    $('#gosh').hide();

    $('#prices_link').click(function() {
        if($(this).hasClass('open') == false) {
            $(this).removeClass('close');
            $(this).toggleClass('open');
            hide_topics();
            $('#prices').show();
            $('.img_hdl').attr('src','images/headlines/sy_hdl_06.gif');
        }
        remove_classes('prices');
    });

    $('#gosh_link').click(function() {
        if($(this).hasClass('open') == false) {
            $(this).removeClass('close');
            $(this).toggleClass('open');
            hide_topics();
            $('#gosh').show();
            $('.img_hdl').attr('src','images/headlines/gosh.gif');
        }
        remove_classes('gosh');
    });

});
