$(function(){
	
	$('.toggle_headers h2').click(function(){
		$(this).next().slideToggle('fast');
	});
	
});