 
Cufon.replace('h3', { fontFamily: 'TradeGothic LT BdCondTwenty' });

function loadContent(id) { 

    if(id == 'home')
    {
        $("#contentArea").empty();   
        $("#contentHome").show();
    }
    else
    {
        $("#contentArea").load(id);
        $("#contentHome").hide();    
    }
    
}

$(document).ready(function() {
    var tabContainers = $('div#menu-nav > div');
    $('div#menu-nav ul.css-tabs a').click(function () {
        
        $('div#menu-nav ul.css-tabs a').removeClass('current');
        $(this).addClass('current');

    });

    loadContent('home');

});


