$(document).ready(function(){		// CONTENT SECTIONS TOGGLE		$("div.section:not(:first)").hide();	$("ul#nav2 li a").click(function(){		$("div.section").hide();		$("ul#nav2 li").removeClass("active");		return false;		});		$("li#nav-strategy a").click(function(){ //toggle		$("#strategy").animate({opacity: "show"}, "slow");		$("#nav-strategy").addClass("active");		return false;	});		$("li#nav-planning a").click(function(){ //toggle		$("#planning").animate({opacity: "show"}, "slow");		$("#nav-planning").addClass("active");		return false;	});		$("li#nav-other a").click(function(){ //toggle		$("#other").animate({opacity: "show"}, "slow");		$("#nav-other").addClass("active");		return false;	});		$("li#nav-about a").click(function(){ //toggle		$("#about").animate({opacity: "show"}, "slow");		$("#nav-about").addClass("active");		return false;	});		$("li#nav-clients a").click(function(){ //toggle		$("#clients").animate({opacity: "show"}, "slow");		$("#nav-clients").addClass("active");		return false;	});			// RETURN TO HOME	$("p.nav-back a").click(function(){ 		$(this).parents("div.section").hide();		$("ul#nav2 li").removeClass("active");		$("#identity").animate({opacity: "show"}, "slow");	});		$("h1 a").click(function(){ 		$("div.section").hide();		$("#identity").animate({opacity: "show"}, "slow");		return false;	});		});