$(document).ready(function() 
{
    function show_hide(show, hide) 
    {
        $('#'+show+'_header').removeClass('link');
        $('#'+hide+'_header').addClass('link');
        
        $('#'+show).css('display', '');
        $('#'+hide).css('display', 'none');
    }
    
    
    $('#news_company_header').click(function() {
        show_hide('news_company', 'news_market');
    }).click();
    
    $('#news_market_header').click(function() {
        show_hide('news_market', 'news_company');
    });
    
    
    
});
