<!--
var tester = 0;
var l
l = document.links


function a1()
{

        for (var i = 0; i < l.length; i++)
        {
                if (l[i].href == location.href)
                {
					if (l[i].parentElement.className
== 'lcell' || l[i].parentElement.className == 'lhover' )
					{
	
l[i].parentElement.className = 'lhover';
                        l[i].style.color = '#FFFF00';
					}
                }
                if (l[i].href != location.href)
                {
                	if  (l[i].parentElement.className == 'lcell' ||
l[i].parentElement.className == 'lhover')
                	{
                		l[i].parentElement.className = 'lcell';
                	}
                }
        }//end for
}//end function a1()



//}

//-->
