/*
 *
 * При нажатии на ссылки вокруг них появляются рамочки
 *
 */

if (document.all && document.all.item) { // MSIE
  var i,l=document.links
  for(i=0;i<l.length;i++) {
    l[i].onfocus=function() {
       this.blur()
    }
  }
}