/* funció per evitar spam als correus */
function changeMail() {
	$("a[href*='(ELIMINAR)']").each(function(i) {
		omg = $(this).attr('href');
		omg2 = $(this).text();
		$(this).attr('href', omg.split('(ELIMINAR)').join(''));
//		$(this).text(omg2.split('(ELIMINAR)').join(''));
	});
	$("area[href*='(ELIMINAR)']").each(function(i) {
		omg = $(this).attr('href');
		omg2 = $(this).text();
		$(this).attr('href', omg.split('(ELIMINAR)').join(''));
//		$(this).text(omg2.split('(ELIMINAR)').join(''));
	});
	$("span.changeemail").each(function(i) {
		omg2 = $(this).text();
		$(this).text(omg2.split('(ELIMINAR)').join(''));
	});
}
$(document).ready(changeMail);
