$(document).ready(function() {

	$(".toggler").each(function(){

		$(this).click(function(){
			$(this).parent("h2").next().slideToggle('slow');

		});

	 });

});