﻿function Initialize()
{
    BoldSelected();
}
function BoldSelected()
{
      if (document.getElementsByTagName) 
      {
             
            var anchors = document.getElementsByTagName('a');
            for (var i=0; i < anchors.length; i++) 
            {
                  var anchor = anchors[i];
                  if ((anchor == location.href) || (anchor + 'index.aspx' == location.href))
                  { 
                   
                        anchor.setAttribute('className', 'selected');
                        anchor.setAttribute('class', 'selected');
                  }
            }
      }     
}

