
$(document).ready(function()
{
    drop_caps('pointy', 32);

    // disclosures
    //
    $(".disclose").click(function(){
        entry = $(this).parents().filter('div').eq(0);
        entry.addClass('entry-loading');

        $.get( this.href, {}, function(content){
            entry.slideUp( 1000, function(){
                entry.html( content );
                entry.slideDown( 1000, function(){
                    entry.removeClass('entry-loading');
                });

                drop_caps();
                $(".quote").each( pretty_quote );
            });
        });
        return false;
    });
});

