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