	//<!--		
		//Set the starting index based on browser type.
		if (document.all)
			start_index = -1;
		else
			start_index = 1;
		function toggleNames(object)
		//function toggleNames accepts a menu object and either shows or hides
		//the object based on the current display style value
		{
			var heading = document.getElementById("heading_" + object.id);
			if (object.style.display != "none")
			{
				heading.innerHTML = "<span class='plusminus'>[+]</span>" + String(heading.innerHTML).substring(33 + start_index, String(heading.innerHTML).length);
				object.style.display = "none";
			}
			else
			{
				heading.innerHTML = "<span class='plusminus'>[-]</span>" + String(heading.innerHTML).substring(33 + start_index, String(heading.innerHTML).length);
				object.style.display = "inline";
			}
		}
		function closeSubMenus()
		//function closeSubMenus closes the expandable menus in the static left-side
		//menu bar for the College of Arts and Sciences Website
		{
				toggleNames(document.getElementById('Student'));
				toggleNames(document.getElementById('fac_staff'));
				toggleNames(document.getElementById('give'));
				toggleNames(document.getElementById('admin'));
				toggleNames(document.getElementById('computing'));
		}
	//-->