/* Ce script est la propriete de Sebastien Patron | patron_sebastien@yahoo.fr */
$(document).ready(function(){
	// Pour tous les liens commençant par "mailto"
	$('a[href^="mailto"]').each(function() {
		// on remplace le texte dans l'attribut href
		var temphref = $(this).attr("href");
		temphref = temphref.replace("[atte]","@");
		temphref = temphref.replace("[p]",".");
		temphref = temphref.replace("[sub]","subject=");
		$(this).attr("href",temphref);
	})
	// Pour tous les liens qui contienne un "@"
	$('a[href*="@"]').each(function() {
		// on remplace le texte dans l'attribut href
		var temphref = $(this).attr("href");
		temphref = temphref.replace("[p]",".");
		$(this).attr("href",temphref);
	})
});
