jQuery(function($){
	$('.no-spam-email').each(function(){
		var email = $(this).html().replace(/\s*\(at\)\s*/g, '@').replace(/\s*\(dot\)\s*/g, '.');
		$(this).html( '<a href="mail'+'to:'+email+'">'+email+'</a>' )
				.removeClass('no-spam-email');
	});
});