(function($) {

$(function(){
  var extLinks = $('a[href]').filter(function() {
    return !/^http:\/\/(www\.)?ayerhoffman\.com/.test(this.href);
  });

  extLinks.addClass('external');

  extLinks.click(function(evt) {
    window.open(this.href);
    evt.preventDefault();
  });
});

})(jQuery);
