		var activeSection = "";
		$(document).ready(function(){
			$("div.sectionSub").hide();
			$("div.section h5 a").click(function(){
				if (activeSection != this.id ) {
					$("div.section").removeClass("active");
					$("div.sectionSub").slideUp();
					$("div#"+this.id+"Full").addClass("active");
					$("div#"+this.id+"Sub").slideDown();
					activeSection = this.id;
				}
				else {
					$("div.section").removeClass("active");
					$("div.sectionSub").slideUp();
					activeSection = "";
				}
			});
			
			$("div.more-levels h1").click(function(){
				$("div.hidden").hide();
				$(this).siblings("div.hidden").show();
			});
			
			
			$("div.moreSections h3").css({cursor:"pointer"});
			$("div.moreSections h3").hover(
				function(){
					$(this).css({color:"#000000"});	
				},
				function(){
					$(this).css({color:"#666666"});	
				}
			);
			$("div.moreSections h3").next("div").hide();
			$("div.moreSections h3").click(function(){
				$(this).siblings("div").slideUp();
				$(this).next("div").slideDown();
			});
		});
		
		
