<%
Url=request.servervariables("URL") 'Retrieves page url
dim link(4)
dim color(4)
dim x
link(0)="/index.php"
link(1)="/news.php"
link(2)="/links.php"
link(3)="/purpose.php"
link(4)="/contact.php"
for x= 0 to 4 ' Set color code to CCCC99 for menu option which matches URL
if link(x)=Url then
color(x)="#CCCC99"
else
color(x)="#999966"
end if
next%>