﻿// global.js
// ---------

$(document).ready(function() {
// open all links with rel="external" in a new window
    $('a[rel="external"]').click(function() {
        var newWin = window.open(this.href, '');
        newWin.focus();
        return false;
    });
});
