$(document).ready( function() {
	$(".external-link").click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});
