// JavaScript Document

$(document).ready(function() {
    $(".entry .entry-only-info div.excerpt").css("display","none");
    $(".entry .entry-only-info").click(function(){
        $(this).children().slideToggle("slow");
    });
});
