/**
 * Creates a proper implementation of the target="_blank" functionality on all links
 * with the rel attribute set to 'external'
 */

window.addEvent('domready', function () {
	$$('a[rel=external]').addEvent('click', function (e) {
		window.open(this.href);
		e.stop();
	});
});
