jQuery(document).ready(function(){
   
   setTimeout("ResizeSiteHeight()",200);
   
  
 
    
});



    function ResizeSiteHeight()
    {	
    	
    	var hauteurGauche = jQuery("#colonne_gauche").outerHeight();
    	
    	var hauteurContent = jQuery("#content").outerHeight();
    	
    	var hauteur_max = Math.max(hauteurContent, hauteurGauche);  
    	
    	if (hauteurGauche > hauteurContent) {
    		jQuery("#content-background").css("height", hauteur_max - 20 - 39 + "px");
    	}
    	
    	jQuery("#footer").css("top", hauteur_max + 154 + "px" );
    	
    	jQuery("#page").css("height", hauteur_max + 154 + "px"); 
    	
    	jQuery("#colonne_gauche").css("height", hauteur_max + "px");
    	 
    	
    	jQuery("#footer").css("visibility", "visible" ); 
    	jQuery("#page").css("visibility", "visible" ); 
    	
    }
    
    
    
   
