links = document.getElementsByTagName('a');
for(i = 0; i < links.length; i++) {
	links[i].onfocus = function() { this.blur(); }
}