as = document.getElementsByTagName('a');
for(i=0; i<as.length; i++) {
	if (!as[i].onclick) { 
		as[i].onclick = CheckLink;
	}
}

function CheckLink(e) {
	targ = GetTarget(e);
	if (!targ.href.match(/jaxcafe/)) {
		//
	}
}