$(function(){
  $("a").each(function() {
    if (this.target)
      return;
    if (!/^http/.test(this.href))
      return;
    if (!/^https?:\/\/(www\.)?escalopter\.com/i.test(this.href))
      this.target="_blank";
  });
});

$("a.swap").click(function(event){
  event.preventDefault();
  $(this).hide();
  $("#"+this.id+"-swap").show();
});

