$(function() {
	$('a:external').click(function(e) {
		window.open($(this).attr('href'));
		e.preventDefault();
	});
});
