﻿$(document).ready(function(){
	
	$(".toggle_container").hide();
 
	$("h2.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});
 
});

$(document).ready(function(){
	
	$(".toggle_container2").hide();
 
	$("h2.trigger2").toggle(function(){
		$(this).addClass("active2"); 
		}, function () {
		$(this).removeClass("active2");
	});
	
	$("h2.trigger2").click(function(){
		$(this).next(".toggle_container2").slideToggle("slow,");
	});
 
});