function verif(ids,labels){
var $ = jQuery;
	for(i in ids){
		if($('#'+ids[i]).val() == labels[i])	$('#'+ids[i]).val(''); 
	}
	return true;
}
jQuery(document).ready(function($){
	$('li.col_gauche').each(function(){
		if($(this).next('li.col_droite').height() > $(this).height()){
			$(this).height($(this).next('li.col_droite').height());
		}
		if($(this).next('li.col_droite').height() < $(this).height()){
			$(this).next('li.col_droite').height($(this).height());
		}
	});
});