/////////////////
// BB SDV 27/5/09 // 
////////////////
/*
function equalHeight(group) {
 tallest = 0;
 group.each(function() {
//	 var truc2 = $(this).css('padding-top');
//	 alert(truc2);
// var truc = new Number(truc2.replace(/px/i, ""));
// alert('truc= '+truc);
// var result = str.replace(/The/gi, "Ze");
  thisOuterHeight = $(this).outerHeight()// + truc;
  thisHeight = $(this).height();
  thisInnerHeight = $(this).innerHeight();
  this.paddingH = thisOuterHeight - thisHeight;
  //alert('thisHeight ='+thisHeight+', thisInnerHeight = '+thisInnerHeight+', thisOuterHeight = '+thisOuterHeight);
 if(thisHeight > tallest) {
 tallest = thisOuterHeight;
 }
 });
 group.each(function(){
					// alert(this.marges);
					 $(this).height(tallest - this.paddingH);
					 });
 }*/
function equalHeight(group) {
 tallest = 0;
 group.each(function() {
 thisHeight = $(this).height() ;
 if(thisHeight > tallest) {
 tallest = thisHeight;
 }
 });
 group.height(tallest);
 }
  $(document).ready(function() {

equalHeight($(".div_contenu_court"));

 });
