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