function fix_height(){
    var height = Math.max($('.page').outerHeight(), $('.mensches').height());
    $('.mensches').height(height);
    $('.page').height(height - 30);
}

$(document).ready(function(){
    $('a[rel="external"]').attr({target: '_blank'});
    $('#id_chain').flash({
        src: '/media/chain.swf',
        width: 740,
        height: 118,
        wmode: 'transparent'
    }, {update: false},
    function(htmlOptions){
        $(this).html('');
        $(this).prepend($.fn.flash.transform(htmlOptions));
    });
    setTimeout('fix_height()', 100);
});
