// Custom JS reliant on MooTools 1.2dev

// add external links to all links with the class "external"
window.addEvent('domready', function() {
	$$('.external').each(function(el, i) {
		el.addEvent('click', function(){
			window.open(this.href);
			return false
		})
	});
});