// JavaScript Document
function span_a_email(jquery_sel){
//convierte <span class="email">nombreARROBAdominioPUNTOcom</span> a enlace.
	if (!jquery_sel) jquery_sel='.email';
	$(jquery_sel).each(
		function (){
			var demail = $(this).text().replace("ARROBA", "@").replace("PUNTO", ".");
			$(this).replaceWith('<a class="'+$(this).attr("class")+'" href="mailto:' + demail + '">' + demail + "</a>");
		}
	)
}
$(document).ready(function(){
	span_a_email('.email');
});

