//forces external links and pdf's to open in a _blank window
function initExternalLinks() {
 var h = window.location.host.toLowerCase();
 $("a[href^='http']:not([href^='http://" + h + "']):not([href^='http://www." + h + "']), a[href$='.pdf']").attr("target", "_blank");
}  
