$(document).ready(function() {
    $('div.entrybody:not(div.entrybody:first)').hide();
    $('h3.entry-title:not(:first)').each(function(index) {
        $(this).click(function() {
            var bodyIndex = index + 1;
            $('div.entrybody:eq(' + bodyIndex + ')').slideToggle(500);
        });
    });
});
