	function thinkingchild () {
		$("#thinking-child-tabulation").addClass("how");
		$(".nav-how").show(0);
		$(".nav-is").hide(0);
		$(".nav-are").hide(0);
		$(".nav-why").hide(0);
		
	// NAVIGATION RULES
		$(".btn-how").click(function(){
			$("#content-how").fadeIn(0);
			$("#content-is").hide(0);
			$("#content-are").hide(0);
			$("#content-why").hide(0);
			$(".nav-how").show();
			$(".nav-is").hide(0);
			$(".nav-are").hide(0);
			$(".nav-why").hide(0);
			$("#thinking-child-tabulation").addClass("how");
			$("#thinking-child-tabulation").removeClass("is");
			$("#thinking-child-tabulation").removeClass("are");
			$("#thinking-child-tabulation").removeClass("why");
			return false
		})
		$(".btn-is").click(function(){
			$("#content-how").hide(0);
			$("#content-is").fadeIn(0);
			$("#content-are").hide(0);
			$("#content-why").hide(0);
			$(".nav-how").hide(0);
			$(".nav-is").show();
			$(".nav-are").hide(0);
			$(".nav-why").hide(0);
			$("#thinking-child-tabulation").removeClass("how");
			$("#thinking-child-tabulation").addClass("is");
			$("#thinking-child-tabulation").removeClass("are");
			$("#thinking-child-tabulation").removeClass("why");
			return false
		})
		$(".btn-are").click(function(){
			$("#content-how").hide(0);
			$("#content-is").hide(0);
			$("#content-are").fadeIn(0);
			$("#content-why").hide(0);
			$(".nav-how").hide(0);
			$(".nav-is").hide(0);
			$(".nav-are").show();
			$(".nav-why").hide(0);
			$("#thinking-child-tabulation").removeClass("how");
			$("#thinking-child-tabulation").removeClass("is");
			$("#thinking-child-tabulation").addClass("are");
			$("#thinking-child-tabulation").removeClass("why");
			return false
		})
		$(".btn-why").click(function(){
			$("#content-how").hide(0);
			$("#content-is").hide(0);
			$("#content-are").hide(0);
			$("#content-why").fadeIn(0);
			$(".nav-how").hide(0);
			$(".nav-is").hide(0);
			$(".nav-are").hide(0);
			$(".nav-why").show();
			$("#thinking-child-tabulation").removeClass("how");
			$("#thinking-child-tabulation").removeClass("is");
			$("#thinking-child-tabulation").removeClass("are");
			$("#thinking-child-tabulation").addClass("why");
			return false
		})
	}
	
	// CHANGE TOUT STUDY INFORMATIONS
	function toutstudy(){
		$(".first").click(function(){
			$("#study-one").fadeIn(0);
			$("#study-two").hide(0);
			$("#study-three").hide(0);
			$("#study-four").hide(0);
			$("#study-five").hide(0);
			return false
		})
		$(".second").click(function(){
			$("#study-one").hide(0);
			$("#study-two").fadeIn(0);
			$("#study-three").hide(0);
			$("#study-four").hide(0);
			$("#study-five").hide(0)
			return false
		})
		$(".third").click(function(){
			$("#study-one").hide(0);
			$("#study-two").hide(0);
			$("#study-three").fadeIn(0);
			$("#study-four").hide(0);
			$("#study-five").hide(0)
			return false
		})
		$(".fourth").click(function(){
			$("#study-one").hide(0);
			$("#study-two").hide(0);
			$("#study-three").hide(0);
			$("#study-four").fadeIn(0);
			$("#study-five").hide(0)
			return false
		})
		$(".fifth").click(function(){
			$("#study-one").hide(0);
			$("#study-two").hide(0);
			$("#study-three").hide(0);
			$("#study-four").hide(0)
			$("#study-five").fadeIn(0);
			return false
		})
	}