(function($){
	$(function(){
		$('a[href^="http"]').click(function(){
			if ( !$(this).attr('href').match(RegExp('^https?\:\/\/'+window.location.hostname+'\/')) && $(this).attr('target') != '_blank' ) {
				window.open(this.href, "_blank");
				return false;
			}
		}).addClass('externalLink');
	});
})(jQuery);