$(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	if($(".toggle_container")){	
		$(".toggle_container").hide(); 
	        $("#toggler1 .toggle_container").slideToggle("slow");
                $("#toggler1 .trigger").addClass("active");

		//Slide up and down on click
		$(".trigger").click(function(){

                  if( $(this).attr("class")!= 'trigger active')
                  {
                    $(".trigger").removeClass("active");
                    $(this).addClass("active");
                    $(".toggle_container").hide("slow");			
                    $(this).next(".toggle_container").slideToggle("slow");
                  }

		});
	}
});




				var _gaq = _gaq || [];
				_gaq.push(['_setAccount', 'UA-15562960-1']);
				_gaq.push(['_trackPageview']);
				_gaq.push(['_trackPageLoadTime']);
				
				(function() {
					var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
					ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
					var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
				})();
