
$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".togglebox1").hide(); 
	

	//Slide up and down on hover
	$("h2").click(function(){
		$(this).next(".togglebox1").slideToggle("slow");
		$('.togglebox1').addClass('acildi').next().show(); //Add "active" class to first trigger, then show/open the immediate next container
		
		
		
	});

});




