		$(document).ready(function(){
			
			//$(".toggle_container").hide();
		
			$("h5.trigger").toggle(function(){
				$(this).addClass("active"); 
				}, function () {
				$(this).removeClass("active");
			});
			
			$("h5.trigger").click(function(){
				$(this).next(".toggle_container").slideToggle("slow,");
			});
		
		});
