$(document).ready(function() {
	$(".laLigne").each(function(){
		var h=0;
		$(this).children().children().each(function() {
			h=Math.max(h,this.offsetHeight);
		});
		h = h-15;
		$(this).children().children().each(function() {
			$(this).css({'height': h+'px'});
		});
	});
});
