function email_protect(selector) {
	$(selector).each( function() {
		$(this).find('.at').html('@');
		$(this).find('.dot').html('.');
		$(this).find('.captcha').html('');
		var mail = $(this).text();
		$(this).html('<a href="mailto:' + mail + '">' + mail + '</a>');
	});
}
