function showList(e) {
	if (document.getElementById(e).style.display == 'none') {
		document.getElementById(e).style.display = 'block';
	} 
	else {
		document.getElementById(e).style.display = 'none';
	}
}



function hideMenu() {
//	document.getElementById('list1').style.display = 'none';
	document.getElementById('list2').style.display = 'none';
	document.getElementById('list3').style.display = 'none';
	document.getElementById('list4').style.display = 'none';
	document.getElementById('list5').style.display = 'none';
	document.getElementById('list6').style.display = 'none';
}

function clickAgain() {
	if (top.location.href == top.referrer)
		hideMenu();
}

function showMenu() {
	if (top.location.href.indexOf('/AboutMINS.html') != -1 || top.location.href.indexOf('/area-responsibilities.html') != -1 || top.location.href.indexOf('/StaffListing.html') != -1) 
	{
		showList('list2');
		document.getElementById('color2').style.color="#3366cc";
	}
	else if (top.location.href.indexOf('/MINSServices.html') != -1 || top.location.href.indexOf('/BarnardNetwork1.html') != -1 || top.location.href.indexOf('/email_services.html') != -1 || 
	top.location.href.indexOf('/file_storage.html') != -1 || 
	top.location.href.indexOf('/server_hosting.html') != -1 || top.location.href.indexOf('/wiki.html') != -1) 
	{
		showList('list3');
		document.getElementById('color3').style.color="#3366cc";
	}
	else if (top.location.href.indexOf('/PolandProced.html') != -1 || 
	top.location.href.indexOf('/AliasPolicy.html') != -1 || 
	top.location.href.indexOf('/Cablingstandards.html') != -1 || 
	top.location.href.indexOf('/ChangeManagement.html') != -1 || 
	top.location.href.indexOf('/Emailquotas.html') != -1 || 
	top.location.href.indexOf('/Email.html') != -1 || 
	top.location.href.indexOf('/MacCapture.html') != -1 || 
	top.location.href.indexOf('/NetworkJacks.html') != -1) 
	{
		showList('list4');
		document.getElementById('color4').style.color="#3366cc";
	}
	else if (top.location.href.indexOf('/FAQ.html') != -1 || 
	top.location.href.indexOf('/Computing.html') != -1 || 
	top.location.href.indexOf('/netres.html') != -1 || 
	top.location.href.indexOf('/Glossary.html') != -1) 
	{
		showList('list5');
		document.getElementById('color5').style.color="#3366cc";
	}
	else if (top.location.href.indexOf('/wireless.html') != -1 || 
	top.location.href.indexOf('/wireless_faq.html') != -1 ||
	top.location.href.indexOf('/wireless_setup.html') != -1 ||
        top.location.href.indexOf('/wireless_coverage.html') != -1 ||
	top.location.href.indexOf('/authenticated_wireless.html') != -1 || 
	top.location.href.indexOf('/wireless_dorm.html') != -1)
	{
		showList('list6');
		document.getElementById('color6').style.color="#3366cc";
	}
	else if (top.location.href.indexOf('/MS.html') != -1)
		document.getElementById('color0').style.color="#3366cc";
	else if (top.location.href.indexOf('/Links.html') != -1)
		document.getElementById('color7').style.color="#3366cc";
	
}
