    window.onload = function() {
 
        var hauteur_content = document.getElementById("content").offsetHeight;
        var hauteur_page = (document.body.clientHeight);       
      
        hauteur_content +=400;
        
        var max = Math.max(hauteur_content,hauteur_page);
             
        max -=95;
        
        document.getElementById("background_bottom").style.top = max+"px";
             
        max -=240;
     
        document.getElementById("content").style.height = max+"px";
        
        document.getElementById("menu_left").style.height = max+"px";
        
            
    }
