//No dotted lines on links with image - 
//This will fix the issue in the other browsers than Mozila.
      var theahrefs = document.getElementsByTagName('a');
      //fix dotted line thing when link is OnClicked
      for(var x=0;x!=theahrefs.length;x++){
      theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
      }