$(document).ready(function() {
	$('a.external').click(function(e) {
		window.open($(this).attr("href"), "_blank");
		e.preventDefault();
	});
});
