$(document).ready(
	function() {
		// Setup all external links to open in a separate window
		$('.externalLink').click(
			function() {
				window.open(this.href);
				return false;
			}
		);
	}
);
