    window.onload = function() {

        var hauteur_content = document.getElementById("background_content_content").offsetHeight;
        var hauteur_menu = document.getElementById("menu").offsetHeight;        
        hauteur_content += 60;

       var max = Math.max(hauteur_content,hauteur_menu);
            
        max -= 45;      
               
       document.getElementById("background_content").style.height = max+"px";
       
       max += 384;
       document.getElementById("bottom").style.top = max+"px";
             
            
    }