function highlightTopic(id){if (document.getElementById)   {   var nodeObj = document.getElementById(id)   nodeObj.style.background = '#E6C1C1';    nodeObj.style.color = '#000000';   }}function showMenu(id) {	var menuDisplay = document.getElementById(id)	menuDisplay.style.display = "block"}function hideMenu() {        var x = document.getElementsByTagName('ul');        for (var i=0;i<x.length;i++)        {					if (x[i].className == 'submenu')			x[i].style.display = "none";        }		menuStyle();}  function menuStyle() {		if (document.title == "About SOBSTDU") {	showMenu("aboutMenu");												highlightTopic("about_us");		}			if (document.title == "What SOBSTDU Offers") {	showMenu("aboutMenu");												highlightTopic("we_offer");		}		if (document.title == "SOBSTDU Strategic Plan") {	showMenu("aboutMenu");												highlightTopic("strategic");		}		if (document.title == "SOBSTDU Annual Reports") {	showMenu("aboutMenu");												highlightTopic("annual_rep");		}			if (document.title == "SOBSTDU Publications and Grants") {	showMenu("aboutMenu");												highlightTopic("pub_grants");		}		if (document.title == "SOBSTDU Criteria") {	showMenu("aboutMenu");												highlightTopic("criteria");		}		if (document.title == "SOBSTDU Developments") {	showMenu("devpmentsMenu");												highlightTopic("criteria");		}		if (document.title == "SOBSTDU Developments") {	showMenu("devpmentsMenu");												highlightTopic("devs");		}		if (document.title == "SOBSTDU Web Design Projects") {	showMenu("devpmentsMenu");												highlightTopic("web_des");		}		if (document.title == "SOBSTDU Multimedia Projects") {	showMenu("devpmentsMenu");												highlightTopic("multimedia");		}		if (document.title == "SOBSTDU WebCT Design") {	showMenu("devpmentsMenu");												highlightTopic("webCT_des");		}		if (document.title == "SOBSTDU Guidelines") {	showMenu("devpmentsMenu");												highlightTopic("guidelines");		}		if (document.title == "Information and Communication Technologies Help") {												highlightTopic("itc_help");		}		if (document.title == "Contact SOBSTDU") {												highlightTopic("contact_us");		}		if (document.title == "SOBSTDU Site Map") {												highlightTopic("site_map");		}							}	