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