var links = new Array("home", "mission", "board", "history", "guidelines", "contact");function selectDiv(div){		for (var i=0; i<links.length; i++)	{		unHighlight(links[i] + "Nav");	}		highlight(div + "Nav");}function highlight(elem){	document.getElementById(elem).style.fontWeight = "bold";	document.getElementById(elem).style.color = "#2B1E5E";}function unHighlight(elem){	document.getElementById(elem).style.fontWeight = "normal";	document.getElementById(elem).style.color = "#2B1E5E";}function mouseOver(span){	document.getElementById(span.id).style.textDecoration="underline";}function mouseOut(span){	var isSelected = (document.getElementById(span.id).style.fontWeight == "bold");		document.getElementById(span.id).style.color = isSelected ? "#2B1E5E" : "#2B1E5E";	document.getElementById(span.id).style.textDecoration="none";}