// JavaScript Document
<!-- 

window.onload = updatenav;



function updatenav(){

var getLink	=	new Array()

var i=1;



	if (document.getElementById){

		while (document.getElementById("link"+i)!=null){

			getLink[i]=document.getElementById("link"+i)

			i++

		}

	}



	for (var i = 1; i < getLink.length ; i++) 

	{ 

	if (location.href == getLink[i].href) {		

		getLink[i].className = "selected";				

		}//end comparison of HREF and Page Location

	}//end for loop

}//end updatenav

//-->
