Foldable text with headings (jQuery)
var $posttext = $('.post-text');
$posttext.find('h1').nextUntil('h1').hide();
$posttext.find('h1:first').nextUntil('h1').show();
$posttext.find('h1').on('click', function() {
$(this).nextUntil('h1').slideToggle(400);
});