/**
 * Make external links open in a new window.
 * External links are those with a css class 'external'.
 */

//= require <third party/Prototype/prototype>

document.observe('dom:loaded', function() {
	$$('a.external').each(function(a) {
		a.target = '_blank';
	});
});

