$(document).ready(function() {
  if (($("span.footnote")).size() > 0) {
	$(".post-content").append("<ul id=\"footnotes\"></ul>");
	footnote = 1;
	$("span.footnote").each(function() {        
                lanote="<li>";
		    texte=$(this).html();
                lanote+="<a name='note"+footnote+"' href='#nlink"+footnote+"' title='Retour vers le texte'>" + footnote + "</a>. ";
		    lanote+=texte;
                lanote+="</li>";
		    $("#footnotes").append(lanote);
                $(this).text("");
                $(this).append("<a name='nlink"+footnote+"' href='#note"+footnote+"' title='Voir note' >"+footnote+"</a>");
                footnote++;
	});
  };
});