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