/**
* fonction callback réussie par defaut 
*/
var selectionnerMotCle = function(data) {

	tlId = $(this).attr("v_id");
	toolTipSuppression($(this).attr('id'));
	$(this).attr('title','Mot clé valide');
	$(this).removeClass("classerreur");
	
	// on l'utilise pour régler le hidden correspondant
	$('#f_id_motcle_'+tlId).val(data.id);
};

var callbackInvalide = function(data)
{
};