/* Open external links in new window */
$(document).ready(function() {

    $('a').filter(function() {
        return this.hostname && this.hostname !== location.hostname;
    })
    .removeClass("exLink")
    .addClass("exLink")
    .removeAttr("rel")
    .removeAttr("title")
    .attr({ rel: "external",
        title: "Opens in new browser window."
    })
    .attr({ target: "_blank" });
});
