function rotateMenu(target)
{
	if(target == "organizations")
	{
		if(townsExtra.style.display == "block")
			townsExtra.style.display = "none";
		else
		{
			hideAll();
			townsExtra.style.display = "block";
		}
	}
	else if(target == "about")
	{
		if(aboutExtra.style.display == "block")
			aboutExtra.style.display = "none";
		else
		{
			hideAll();
			aboutExtra.style.display = "block";
		}
	}
	else if(target == "happenings")
	{
		if(hapsExtra.style.display == "block")
			hapsExtra.style.display = "none";
		else
		{
			hideAll();
			hapsExtra.style.display = "block";
		}
	}
}

function hideAll()
{
	townsExtra.style.display = "none";
	aboutExtra.style.display = "none";
	hapsExtra.style.display  = "none";
}

