$(function(){
	$('#two, #three, #four').hide();
	
	$('#homeLink').click(function() {
		$('#home').show();
		$('#two, #three, #four').hide();
		return false;
	});
	
	$('#twoLink').click(function(){
		$('#two').show();
		$('#home, #three, #four').hide();
		return false;
	});
	
	$('#threeLink').click(function(){
		$('#three').show();
		$('#home, #two, #four').hide();
		return false;
	});
	
	$('#fourLink').click(function(){
		$('#four').show();
		$('#home, #three, #two').hide();
		return false;
	});


});