jQuery.fn.toggleText = function(a, b) {
	return this.each(function() {
						jQuery(this).text(jQuery(this).text() == a ? b : a);
      				});
};

jQuery(document).ready(function() {

	//affiche le nbr de commentaires des mots dans l'ind
	jQuery('#showCommentsNbr').click(function() {
		jQuery('.dico_comments_nbr').animate({
		    'opacity' : 'toggle',
		  });
		//jQuery('#showCommentsNbr').
		return false;

	});

});


