// JavaScript Document

lastElement = "";


function expandIt(whichEl, holderEl) {
	if (lastElement != ""){
		if (whichEl != lastElement)
		{
			lastElement.style.display = "none";
		}
	}
	
	whichEl.style.display = "";
	holderEl.style.display = "none";
	lastElement = whichEl;
}

function showHolder(holderEl){

	var loc = location.href;
	var locArray = loc.split("/");

	if (locArray[3] != "aboutUs")
	{
		if (lastElement != "")
		{
			lastElement.style.display = "none";
		}
		
		holderEl.style.display = "";
	}
}