function hiliteHomeNav(id) {
	var currPage = location.href.split('/');
	if (document.layers || document.getElementById) {
		var st=document.getElementById(id);
		st.style.color = "#F8D73E";
		st.style.textDecoration = "none";		
	}
}

function unhiliteHomeNav(id) {
	var currPage = location.href.split('/');
	if (document.layers || document.getElementById) {
		var st=document.getElementById(id);
		st.style.color = "#FFFFFF";		
		st.style.textDecoration = "underline";		
	}
}

function hiliteSecondaryNav(id) {
	var currPage = location.href.split('/');
	if (document.layers || document.getElementById) {
		var st=document.getElementById(id);
		st.style.color = "#CC3300";
		st.style.textDecoration = "none";
	}
}

function unhiliteSecondaryNav(id) {
	var currPage = location.href.split('/');
	if (document.layers || document.getElementById) {
		var st=document.getElementById(id);
		st.style.color = "#000000";		
		st.style.textDecoration = "underline";		
	}
}

