$(document).ready(
	function () {
		$('a[rel=external]').click(
			function (e) {
				window.open(this.getAttribute('href'), '_blank');

				e.preventDefault();
			}
		);
	}
);