$(document).ready(function() {
	/* E-Mails umwandeln: title */
	$('area.email, a.email').each(function(){
		var to_replace = '=at-no-spam=';
		var link    = $(this).attr('href').replace(to_replace, '@');
		var address = $(this).html().replace(to_replace, '@');
		
		$(this).html(address);
		$(this).attr('href', link);
	});
	
	
});
