$(function() {

    $('.content-left').hide();
    $('.content-left:first').show();
    $('#nav-secondary li:first').addClass('selected');
	$('#nav-secondary a').click(function(){
    	var anchorID = $(this).attr("href");
        $('.content-left').fadeOut(800);
        $(anchorID).delay(1100).fadeIn(800);
        $('#nav-secondary a').parent().removeClass('selected');
        $(this).parent().addClass('selected');
        
        return false;
    });

});