﻿$(document).ready(function() {
    // make all exterior links open in new window
    $("a[href^=http://]").attr("target", "_blank");
    
});
