$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("h2.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false;
	});
	
	$(" a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
	

});

