﻿
function highLight()
	{
	var aLinks = document.getElementsByTagName("A"), x
	for (x=0;x<aLinks.length;x++)
		{
		cPage = document.location.href
		cHref = aLinks[x].href
		if (cPage.toLowerCase() == cHref.toLowerCase())
			{//C0C0C0, CCCC00
			aLinks[x].style.border = "1px inset"
			aLinks[x].style.backgroundImage = "url(/images/Opacity-Image-dark.png)"
			}
		}
	}

