$(document).ready(
	function()
	{
		$('h4').click(function() {
			$(this).next().toggle('fast');
		});
	}
);
