(function($) {
	$(document).ready(function() {
		$('a[href^=http]').click(function() {
			var $this = $(this);
			if ($this.is('.moduleLink'))
				return false;
			if (!$this.is('.noexternal')) {
				window.open($(this).attr('href'));
				return false;
			}
		});
	});
})(jQuery);
