$(document).ready(function() {
	
	// domenabled
	$('body').addClass('domenabled');
	
	// external links
	$("a[rel=external]").click(function() {
		window.open(this.href);
		return false;
	});
	
	$('#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>');
	});

});