// Name: Blur Anchors
// Language: JavaScript
// Author: Travis Beckham | squidfingers.com
// Description: Remove anchor outlines from all links in the document
// --------------------------------------------------

function blurAnchors(){
  if(document.getElementsByTagName){
    var a = document.getElementsByTagName("a");
    for(var i = 0; i < a.length; i++){
      a[i].onfocus = function(){this.blur()};
    }
  }
}

if (window.attachEvent) window.attachEvent("onload", blurAnchors);
if (window.addEventListener) window.addEventListener( "load", blurAnchors, false );
