function NavigationMenu_ToggleMenu(id)
{
	var link = this.GetElementByID(id + "Link");
	var icon = this.GetElementByID(id + "Icon");
	var body = this.GetElementByID(id + "Body");

	if (body.style.display == "none")
	{
		icon.src = icon.src.replace("Open", "Close");
		body.style.display = "block";
	}
	else
	{
		icon.src = icon.src.replace("Close", "Open");
		body.style.display = "none";
	}
}

