﻿$(function() {
    $("a[rel='external']").click(function(e) {
        window.open(this.href);
        return false;
    });
});