$(document).ready(function() {
	
	$('#content_secondary span.email').each(function(index) {
		var email = $(this);
		email.html( email.html().replace(' [apenstaartje] ', '@').replace(' [punt] ', '.') ).wrapInner('<a href="mailto:' + email.text() + '"></a>');
	});

});
