﻿
jQuery(document).ready(function() {

processExternalLinks();});  
/*
function processExternalLinks(){
	jQuery("a[href*='http://']:not([href*='" + location.hostname + "'],[href*='datacenter.coloradohealthinstitute.org'])").attr("target", "_blank");
}
*/

function processExternalLinks(){
	jQuery("a[href*='http://']:not(:Contains('" + location.hostname + "'),:Contains('datacenter.coloradohealthinstitute.org'))").attr("target", "_blank");
}



// Case-insensitive selector
jQuery.extend(jQuery.expr[":"], {  
    "Contains": function(elem, i, match, array) {  
        return (elem.href || elem.href || "").toLowerCase  
().indexOf((match[3] || "").toLowerCase()) >= 0;  
    }  
}); 
