 $(document).ready(function(){
   montimer=window.setTimeout("adapte()",300); 
 });
 
 function adapte(){
 	 var hauteurcontexte = ($("#contextes").height()) +342;
    var hauteurcorps = $("#corps").height();
    if ( hauteurcontexte > hauteurcorps) { 
    	$("#corps").height(hauteurcontexte);
    	 } else { 
    	$("#contextes").height(hauteurcorps);
    }
 }
