Hola FLECHA, hola tunait.
 
Bueno, esto no tiene ningún mérito porque es un puro copy&paste (espero que no aparezca ningún chalado escupiéndome por ello  

), pero yo es el que utilizo. Ah! te lo pongo con la firma del autor incluida. 
- Primero crea un archivo .js (que creo que será lo más práctico si tienes varias páginas) con esto: 
/ 4LevelWebs ver1.0 [Based on code by Eddie Traversa]
function unblur() {
	this.blur();
} 
function blurLinks() {
	if (!document.getElementById) return;
	theLinks = document.getElementsByTagName("A");
	theAreas = document.getElementsByTagName("AREA");
	for(i=0; i<theLinks.length; i++) {theLinks[i].onfocus = unblur;}
	for(i=0; i<theAreas.length; i++) {theAreas[i].onfocus = unblur;}
  } 
//-->blurLinks End 
-Luego en el head lo vinculas y en el body pones un OnLoad="blurLinks()" 
Como ya te he dicho a mi me funciona perfectamente y me parece más cómodo que ir tocando todos los enlaces. 
Un Saludo.  
