function annotate() { 
	var dL = document.getElementsByTagName("a");
	var prefix = 'http://commons.pajamasmedia.com/pj-redirect.php?';
	var oklinks = "http://"+window.location.hostname+"/";
	oklinks += ""; // we don't want to show up in the referrer logs of our info site

	for (var i=0; i<dL.length; i++) {
		var href = dL[i].getAttribute("href");
		if (href && href.match(/^http:/i) && dL[i].firstChild) {
			if (href.indexOf(oklinks) != 0) {
				dL[i].setAttribute ("href", prefix + href);
			}
		}
	}
}

window.onload = function(){annotate();};

