/*-----Rules------
	1) Must replace navArray values with ids of current navigation
	2) Only the home page can be at the root level and link to an index file explicitly
	3) All other files must be in directories
*/
function currentSelection(){
	var currentURL = document.location.href;
	var navLinkHREF;
	var linkToFormat = document.getElementById("Home");
	var navArray = new Array("Services", "Services: Flood Mitigation Studies", "Services: Flood Hazard Management", "Services: Flood Proofing", "Services: Permit Facilitation", "Services: Expert Witness", "Resource Links", "About Us", "About Us: DMS Foundation", "About Us: Portfolio", "Contact Us");
	for(i=0; i<navArray.length; i++){
		var anchorLink = document.getElementById(navArray[i]);
		navLinkHREF = anchorLink.href;
		if(currentURL.indexOf(navLinkHREF) != -1){
			linkToFormat = anchorLink;
		}
	}
	//Uncomment and change the values as you wish
	
	//Below, you can change the link text
	//linkToFormat.innerHTML = anchorLink.innerHTML + "&larr;";
	
	//Below, you can change the the text color
	linkToFormat.style.color = "black";
	
	//Below, you can change the text background
	linkToFormat.style.backgroundColor = "white";
	
	//Below, you can change the text size
	//linkToFormat.style.fontSize = "16px";
	
	//Below, you can change the font weight
	//linkToFormat.style.fontWeight = "bolder";
	
	//Below, you can change the font style
	//linkToFormat.style.fontStyle = "italic";
	
	//Below, you can change the text decoration
	linkToFormat.style.textDecoration = "none";			
}
