$(document).ready(function(){

	$('a#aboutlink').click(function() {
		$('#projects').hide();
		$('#contactbox').hide();
		$('#secretbox').hide();
		$('#aboutbox').show();
		return false;
	});
	
	$('a#closelink').click(function() {
		$('#aboutbox').hide();
		$('#contactbox').hide();
		$('#secretbox').hide();
		$('#projects').show();
		return false;
	});
	
	$('a#contactlink').click(function() {
		$('#projects').hide();
		$('#aboutbox').hide();
		$('#secretbox').hide();
		$('#contactbox').show();
		return false;
	});
	
	$('a#contactcloselink').click(function() {
		$('#contactbox').hide();
		$('#secretbox').hide();
		$('#projects').show();
		return false;
	});
	
	$('a#secretlink').click(function() {
		$('#aboutbox').hide();
		$('#contactbox').hide();
		$('#projects').hide();
		$('#secretbox').show();
		return false;
	});
	
	$('a#secretcloselink').click(function() {
		$('#secretbox').hide();
		$('#projects').show();
		return false;
	});
	
});