function init()
{
  var m=0
  for (var i=0; i<document.links.length; i++)
  {
    if (document.links[i] == location.href)
    {
      for (var c=0; c<100 && m<=i; c++)
      {
        if (document.all(c).tagName == "A")
        {
          m++
        }
      }
      document.all(c-1).style.color = "#000000"
      break
    }
  }
}