function blurFocus() {
	// dom test
	if (!document.getElementById || !document.getElementsByTagName) return;
	
	// find all links and blur their focus
	var targets = document.getElementsByTagName('A');
	for (var i=0; i<targets.length; i++) {
		targets[i].onfocus = function() {this.blur();};
	};
}
blurFocus();