$(document).ready(function(){
	// hides the project list as soon as the DOM is ready
	// (a little sooner than page load)
	$('.about_description').hide();

	// toggles the  profile content on clicking the noted link 
	 $('a#profile').click(function() {	
		$('.services_txt').hide();	
		$('.people_txt').hide();
		$('.approach_txt').hide();
		$('.experience_txt').hide();
		$('.match_txt').hide();
		$('.profile_graphic').hide();
		 $('.profile_txt').toggle(100);
		  // return false;
		})
		
	// toggles the  profile content on clicking the noted link 
		$('a#services').click(function() {	
		$('.profile_txt').hide();	
		$('.people_txt').hide();
		$('.approach_txt').hide();
		$('.experience_txt').hide();
		$('.match_txt').hide();
		$('.profile_graphic').hide();
		$('.services_txt').toggle(100);
			// return false;
		})
		
	// toggles the  profile content on clicking the noted link 
		$('a#people').click(function() {	
		$('.profile_txt').hide();	
		$('.services_txt').hide();
		$('.approach_txt').hide();
		$('.experience_txt').hide();
		$('.match_txt').hide();
		$('.profile_graphic').hide();
		$('.people_txt').toggle(100);
			// return false;
		})
		
	// toggles the  profile content on clicking the noted link 
		$('a#approach').click(function() {	
		$('.profile_txt').hide();	
		$('.services_txt').hide();
		$('.people_txt').hide();
		$('.experience_txt').hide();
		$('.match_txt').hide();
		$('.profile_graphic').hide();
		$('.approach_txt').toggle(100);
			// return false;
		})
		
	// toggles the  profile content on clicking the noted link 
		$('a#experience').click(function() {	
		$('.profile_txt').hide();	
		$('.services_txt').hide();
		$('.people_txt').hide();
		$('.approach_txt').hide();
		$('.match_txt').hide();
		$('.profile_graphic').hide();
		$('.experience_txt').toggle(100);
			// return false;
		})
		
	// toggles the  profile content on clicking the noted link 
		$('a#match').click(function() {	
		$('.profile_txt').hide();	
		$('.services_txt').hide();
		$('.people_txt').hide();
		$('.approach_txt').hide();
		$('.experience_txt').hide();
		$('.profile_graphic').hide();
		$('.match_txt').toggle(100);
			// return false;
		})
		
});