window.addEvent('domready', function() {
	$$('a').each(function(link) {
		if (/^https?:/.exec(link.get('href'))) {
			link.set('target', '_blank');
		}
	});
});
