$(document).ready(function() {
						   
	$('#content1').hide('fast');
	$('#content2').hide('fast');
	$('#content3').hide('fast');				   
	



	$('#nav_one li a').click(function(){
								  		
		$('#content1').hide('fast',showContent);
		$('#content2').hide('fast');
		$('#content3').hide('fast');

		function showContent() { $('#content1').show('normal'); }
		
		return false;
		
	});
	
	
	$('#nav_two li a').click(function(){
								  		
		$('#content2').hide('fast',showContent);
		$('#content1').hide('fast');
		$('#content3').hide('fast');

		function showContent() { $('#content2').show('normal'); }
		
		return false;
		
	});
	
	
	$('#nav_three li a').click(function(){
								  		
		$('#content3').hide('fast',showContent);
		$('#content1').hide('fast');
		$('#content2').hide('fast');

		function showContent() { $('#content3').show('normal'); }
		
		return false;
		
	});
	
	
	

});