function freddy() {
    resize = function() {
        $('#fiction').height( $(window).height() - 64 );
    }

    $(window).resize( function() {
        if (typeof(t) != 'undefined') clearTimeout(t);
        t = setTimeout(resize, 100);
    });

    $('.nonsense a').click(function () {
        $('#mostly').attr('src', this.href);
        return false;
    });

    $('#fiction #mostly').load(function() {
        setTimeout(function() { 
            $('#truth').slideDown(350, resize);
        }, 500);
    });

    resize();
}


