window.onload = function() {
    ResizeContent(); 
}

function ResizeContent()
{
    <!--calcul hauteur content pour le bas-->
       
        var content = document.getElementById("content");       
        var hauteur_content = content.offsetHeight;
        var hauteur_roue = 345;
     
        var max = Math.max(hauteur_content,hauteur_roue);

        document.getElementById("background_content").style.height = max+"px";
        max += 277 ;  
        document.getElementById("background_bottom").style.top = max+"px";
        
}
