$(document).ready(function(){
	$('h4').next().hide();

	$('h4').click(function() { 
		$(this).next().slideToggle('slow'); 
	});
});