$(document).ready(function(){
	
	$(".toggle_container").hide();
	
	showFirst();
	
	$("h2.trigger").click(function(){
	      var visible = $(this).next().css('display');
	      $(".toggle_container").hide('Slow, ');
	      $("h2.active").removeClass('active');
	      if (visible.indexOf('none')==0){
		    $(this).addClass('active');
		    $(this).next().show('Slow, ');
	      }
	});
 
});

function showFirst() {
       $("#first").addClass('active');
       $("#first").next().show('Slow, ');
};