$(document).ready(function(){
	// Prepare initial state
	$("form h3").addClass("js-enabled").addClass("closed");;
	$("form h3+*").addClass("js-enabled");

	// Assign handlers
	$("form h3").toggle(function(){
		$(this).removeClass("closed");
		$(this).next().slideDown('slow');
	},function(){
		$(this).addClass("closed");
		$(this).next().slideUp('slow');
	});
});