function afficherIconesExterne()
{
	$('#content a').filter(function() {
	return this.hostname && this.hostname !== location.hostname;
	}).after(' <img src="../images/extlink_1.gif" class="icones" alt="Lien interne"/>');
	//$(".icones").unwrap("<a></a>");
}

function afficherIconesPDF()
{
	$("#content a[href$='.pdf']").after(' <img src="../images/icon_pdf.gif" class="icones" alt="Document PDF"/>');
	//$(".icones").unwrap();
}

function afficherIconesDoc()
{
	$("#content a[href$='.doc'], a[href$='.txt'], a[href$='.rft']").after(' <img src="../images/icon_doc.gif" class="icones" alt="Document texte"/>');
	//$(".icones").unwrap();
}

