///<reference path="jquery-1.5.min-vsdoc.js"/>


// ---- Runs whenever a page's DOM is completely drawn
$(document).ready(function() {

    // ---- Set all external Links with icon to tell user another window/tag will be opened for the external link
    $("a[href*='http://']:not([href*='" + location.hostname + "']),[href*='https://']:not([href*='" + location.hostname + "'])")
    .attr("target", "_blank")
    .attr("title", "Opens new window")
    .addClass("external");

});






