// JavaScript Document

$(document).ready (function () {
	$('.slide-header').click (
		function () { $(this).next ().slideToggle (); }
	);
});