function toggleAllCategoriesMenu()
{
	theCategoriesNavDiv = document.getElementById("AllCategoriesNav");
	theCategoriesNavTab = document.getElementById("AllCategoriesNavTab");
	theCategoriesNavTabLink = document.getElementById("AllCategoriesNavTab").firstChild;
	theCategoriesImage = document.getElementById("AllCategoriesNavArrow");
	
	if( -1 != theCategoriesNavDiv.style.display.indexOf( "block" ) )
	{
		theCategoriesNavDiv.style.display = "none";
		theCategoriesNavTab.style.backgroundColor = "";
		theCategoriesNavTabLink.style.color = "";
		theCategoriesImage.src = "/globalImages/downArrow.gif";
	}
	else
	{
		theCategoriesNavDiv.style.display = "block";
		theCategoriesNavTab.style.backgroundColor = "#9D5AA2";
		theCategoriesNavTabLink.style.color = "#FFFFFF";
		theCategoriesImage.src = "/globalImages/upArrow.gif";
	}
}
