function oc(a) {
	var o = {};
	for(var i=0;i<a.length;i++){o[a[i]]='';
	}
	return o;
}
$(function() {
	$('a').click(function() {
		try {
			domain = $(this).attr("href").match(/:\/\/(.[^/]+)/)[1];
			exceptions = new Array('lesliesanchez.com','www.lesliesanchez.com');
			if(domain in oc(exceptions)){}
			else{ window.open($(this).attr("href"));
			return false;
		}
	}
	catch(e){console.log(e); return false;}
	});
});