$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".sub").hide(); 

//	Switch the "Open" and "Close" state per click
	$(".contactbox>h4").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});
//	Slide up and down on click
	$(".contactbox>h4").click(function(){
//		$(this).(".sub").slideToggle("slow");
		$(this).next("p").next(".sub").slideToggle('fast');
		//		$(this).find('div:first').show();
//		$(">.sub, this").slideToggle("slow");
	});

});