// Author: Travis Beckham | squidfingers.com
// Description: Remove anchor outlines from all links in the document
//
// Why? when you use image swap text links in css, the outlines go out to the left in some browsers (mozilla)
// because of text indent. This gets rid of that.

function blurAnchors() {
    var a = document.getElementsByTagName("a");
    for(var i = 0; i < a.length; i++){
      a[i].onfocus = function(){this.blur()};
    }
}
window.onload = blurAnchors;
