/**************************************************
(c) Kristian Frost - 2007
http://www.frostgraphics.dk

Blur all your anchortags when focused, to remove
the outline.

Copy/paste all you want, but please mention my
name. (Or leave this comment here)

**************************************************/

function onActiveBlur() {

  var anchortags = document.getElementsByTagName("a");

  for (i=0; i<anchortags.length; i++) {
    if (anchortags[i].getAttribute('href').length>0) {
      anchortags[i].onfocus=function() {
        this.blur();
      };
    }
  }
}

window.onload = onActiveBlur;