// JavaScript Document
function showAboutUs()
{
	auElement = document.getElementById("l2");
	auElement.style.display = "block";
}

function hideAboutUs()
{
	auElement = document.getElementById("l2");
	auElement.style.display = "none";
}

theArray = ["andrew", "john", "soteris"];

function initExec()
{
	for(i = 0; i<theArray.length;i++)
	{
		if(theArray[i] != "andrew")
		{
			hideElement = document.getElementById(theArray[i]+"Exec");
			hideElement.style.display = "none";
		}
	}
}
function showMyExec(theId)
{
	
	for(i = 0; i<theArray.length;i++)
	{
		removeElement = document.getElementById(theArray[i]);
		removeElement.className = "";
		hideElement = document.getElementById(theArray[i]+"Exec");
		hideElement.style.display = "none";
	}
		
	thisElement = document.getElementById(theId);
	thisElement.className = "current"
	thisSection = document.getElementById(theId + "Exec");
	thisSection.style.display = "block";
}
