
function hiliteLink() {
//show the current position
ref=location.href.match(/([^\/]+)\??[^\/]+$/)[1];
links=document.getElementById("navcontainer").getElementsByTagName("a");
for(var j=0; j<links.length; j++){
if(links[j].href.indexOf(ref)!=-1){
//link found - apply hilite
links[j].style.backgroundColor="#FFFFFF";
links[j].style.color="#333333";
}
}
};

