$(function() {
	$("a[href^='http']").each(function(i, el) {
		if (!el.href.match(/http(s)?:\/\/(\w+\.)?northshorerealtors\.com/)) {
			el.target = '_blank';		
			//$(el).addClass('external_link');
		}
	});		
});