function cleanLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		anchors[i].onfocus = function() {
			this.blur()
		}
	}
}
  
window.onload = cleanLinks;
