$(document).ready(function(){
	
	$(".acc_container1").hide();

	$(".acc_trigger1").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$(".acc_trigger1").click(function(){
		$(this).next(".acc_container1").slideToggle("slow,");
	});

});
