jQuery(function($) {

    // external links
    $('a:not(:has(img))').filter(function() {
        return this.hostname && this.hostname !== location.hostname;
    }).addClass('external').attr('target', '_blank');

    // make email link
	$('.email').each(function(index) {
		var $emailAddress = $(this).html().replace(' [monkeytail] ', '@').replace(' [dot] ', '.')
		$(this).text('Send me a mail').wrapInner('<a href="mailto:' + $emailAddress + '"></a>');
	});
	
});