
$(function(){

/* This code will add _blank to all offsite links */
$("a").filter(function() {
    return this.hostname && this.hostname !== location.hostname;
}).attr('target', '_blank');

/* This code will add the external link icon to links.  Need to filter out ONLY newsfeed links */
//$("a").filter(function() {
//    return this.hostname && this.hostname !== location.hostname;
//}).addClass('external');



});


