$(function() {
  $('a[@href^=http]').not('[@href*=greendot.org]')
    .addClass('external-link')
    .click(function() {
      window.open(this.href, '_blank');
      return false;
    });
});