$(document).ready(function(){
  $('#corbin').css('display','none');
  $('#chris').css('display','none');
  $('#noah').css('display','none');
});

$(function() {
	$('.aboutLinks a.cor').click(function() { //fades in the about section and hides projects and contact
    	$('#aboutText').hide();
    	$('#corbin').fadeIn(1000);
    	$('#chris').hide();
    	$('#noah').hide();        		
    	}); 
    $('.aboutLinks a.chr').click(function() { //fades in the projects section and hides about and contact
    	$('#aboutText').hide();   	
    	$('#corbin').hide();
    	$('#chris').fadeIn(1000);
    	$('#noah').hide();
	    });
    $('.aboutLinks a.noa').click(function() { //fades in the contact section and hides about and projects
    	$('#aboutText').hide();
      	$('#corbin').hide();
      	$('#chris').hide();
      	$('#noah').fadeIn(1000);
      	}); 	       	
});
