jQuery(document).ready(function(){
   
    ResizeSiteHeight();
    
});



    function ResizeSiteHeight()
    {	
    	
    
    	var hauteurGauche = jQuery("#colonne_gauche").outerHeight();
    	
    	var hauteurContent = jQuery("#content-content").outerHeight();
    	
    	var hauteurPage = (document.body.clientHeight);
    	
    	var hauteur_max = Math.max(hauteurGauche, hauteurContent);  
    	
    	hauteur_max += 446; /*footer 81*/    
    	    
        var hauteur_max = Math.max(hauteur_max, hauteurPage);
    	
    	
    	jQuery("#background").css("height", hauteur_max + "px"); 
    	jQuery("#footer").css("top", hauteur_max - 81 + "px" ); 
    	jQuery("#background_repeat").css("height", hauteur_max + "px" ); 
    	 
    	
    	jQuery("#footer").css("visibility", "visible" ); 
    	
		
        
        
    }
    
   
