$(window).load(function(){
        var c = $('#content');
        var h = $('body').height() -130;
        if(c.height() < h)
            c.height(h);
});

