﻿$(function()
{
  formatLinks();
});

function formatLinks()
{
  $("a[target=_blank]").removeAttr("target").addClass("external");

  $("a.external").click(function(e)
  {
    window.open(this.href);

    e.preventDefault();
  });
}
