var theahrefs = document.getElementsByTagName(‘a’);
//fix dotted line thing when link is OnClicked from http://www.last-child.com/get-rid-of-the-dotted-lines-on-links-with-image-replacement/
for(var x=0;x!=theahrefs.length;x++){
theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
}