window.addEvent('domready', function() {
	
	$$('a[rel=external]').each( function (el) {
		el.set('target', '_blank');
	});
	
	var m = new Array(116,97,46,107,97,104,105,122,99,100,105,118,97,100,64,110,97),
		t = new Array(58,111,116,108,105,97,109),
		l = m.length,
		h = t.length,
		result = '',
		string = '';
	
	while(l--) {
		result += String.fromCharCode(m[l]);
	}
	
	while(h--) {
		string += String.fromCharCode(t[h]);
	}
	
	$('mail').set('html', '<a href="'+string+result+'">Mail</a>');
	$('nomail').set('html','');
	
});