$(function()
{

	//Hide (Collapse) the toggle containers on load
	$(".toggle2_container").hide(); 
	
	//Switch the "Open" and "Close" state per click
	$("div.contact_title").toggle(
		function(){
			$(this).addClass("active");
		},
		function () {
			$(this).removeClass("active");
		}
	);

	//Slide up and down on click
	$("div.contact_title").click(function(){
		$(this).next(".toggle2_container").slideToggle("slow");
	});

});
