// JavaScript Document
// <div class = 'menu_link2'>
function showmenu(o)
{
	var obj = document.getElementById("menu2");
	if (o == 0)
	{
		var obj2 = document.getElementById("industries");
		obj2.style.color = "#ffffff";
		obj2.style.textDecoration = "underline";
		obj.innerHTML = "<div id ='menu_industries'>\
							<span style = 'color: #e1e1e1;font-family: Arial, Helvetica, sans-serif;font-size: 12px;'>\
								<a class = 'menu2' href = 'airports.php?page=0'>Airports</a> | \
								<a class = 'menu2' href = 'courier.php?page=0'>Courier & Postal</a> | \
								<a class = 'menu2' href = 'distribution.php?page=0'>Distribution</a> | \
								<a class = 'menu2' href = 'manufacturing.php?page=0'>Manufacturing</a> | \
								<a class = 'menu2' href = 'wastewater.php?page=0'>Water/Waste Water</a> | \
								<a class = 'menu2' href = 'other.php?page=0'>Other</a>\
							</span>\
                		</div>";
		obj2 = document.getElementById("services");
		obj2.style.color = "#e1e1e1";
		obj2.style.textDecoration = "none";
		obj2 = document.getElementById("aboutus");
		obj2.style.color = "#e1e1e1";
		obj2.style.textDecoration = "none";
	}
	else if(o == 1)
	{
		var obj2 = document.getElementById("aboutus");
		obj2.style.color = "#ffffff";
		obj2.style.textDecoration = "underline";
		obj.innerHTML = "<div id ='menu_about'>\
							<span style = 'color: #e1e1e1;font-family: Arial, Helvetica, sans-serif;font-size: 12px;'>\
								<a class = 'menu2' href = 'articles.php'>Articles</a> | \
								<a class = 'menu2' href = 'clients.php'>Clients</a> | \
								<a class = 'menu2' href = 'history.php'>History</a> | \
								<a class = 'menu2' href = 'staff.php'>Staff</a>\
							</span>\
                		</div>";
		obj2 = document.getElementById("services");
		obj2.style.color = "#e1e1e1";
		obj2.style.textDecoration = "none";
		obj2 = document.getElementById("industries");
		obj2.style.color = "#e1e1e1";
		obj2.style.textDecoration = "none";
	}
	else if(o == 2)
	{
		var obj2 = document.getElementById("services");
		obj2.style.color = "#ffffff";
		obj2.style.textDecoration = "underline";
		obj.innerHTML = "<div id ='menu_services'>\
								<span style = 'color: #e1e1e1;font-family: Arial, Helvetica, sans-serif;font-size: 12px;'>\
									<a class = 'menu2' href = 'general.php?page=0'>General</a> | \
									<a class = 'menu2' href = 'hardware.php?page=0'>Hardware</a> | \
									<a class = 'menu2' href = 'software.php?page=0'>Software</a> | \
									<a class = 'menu2' href = 'systems.php'>Systems</a>\
								</span>\
                		</div>";
		obj2 = document.getElementById("industries");
		obj2.style.color = "#e1e1e1";
		obj2.style.textDecoration = "none";
		obj2 = document.getElementById("aboutus");
		obj2.style.color = "#e1e1e1";
		obj2.style.textDecoration = "none";
	}
	else
	{
		obj.innerHTML = "ERROR!!!";
	}
}

function hidemenu()
{
	var obj2 = document.getElementById("services");
	obj2.style.color = "#e1e1e1";
	obj2.style.textDecoration = "none";
	obj2 = document.getElementById("industries");
	obj2.style.color = "#e1e1e1";
	obj2.style.textDecoration = "none";
	obj2 = document.getElementById("aboutus");
	obj2.style.color = "#e1e1e1";
	obj2.style.textDecoration = "none";
	var obj = document.getElementById("menu2");
	obj.innerHTML = "";
}
