window.onload = function() {

<!--calcul hauteur content pour le bas-->   
        var hauteur_content = document.getElementById("content").offsetHeight;      
        
        var hauteur_menu_actu = document.getElementById("menu_actu").offsetHeight;      

        var hauteur_max = Math.max(hauteur_content, hauteur_menu_actu);
        
        hauteur_max += 10 ;

        document.getElementById("background_content").style.height = hauteur_max+"px";
        hauteur_max += 296 ;  
        document.getElementById("background_bottom").style.top = hauteur_max+"px";
 
}
