  /* WILL HIGHLIGHT THE NAVBAR */
	function changeStyle() {
    // navSection should already be defined as the button name to highlight
		document.getElementById(navSection).style.backgroundColor="#ffffff";
		document.getElementById(navSection).style.borderTopColor="#ffffff";
		document.getElementById(navSection).style.borderBottomColor="#ffffff";
		document.getElementById(navSection).style.fontWeight="bold";
		document.getElementById(navSection).style;styleObj.color="red";
	}
	

