    window.onload = function() {
 
        var hauteur_content = document.getElementById("content").offsetHeight; 
        var hauteur_menu_gauche = document.getElementById("menu_gauche").offsetHeight;  
        
        var hauteur_max = Math.max(hauteur_content,hauteur_menu_gauche);
        
   

        hauteur_max += 260;
        
        document.getElementById("background_ombre").style.height = hauteur_max+"px";
        

        
        hauteur_max += 65;
       
        document.getElementById("background_bottom").style.top = hauteur_max+"px";

    }