<!--

function expand(which)
{
	for (i=1; i <= numDivs; i++)
	{
		if ((this_div = document.getElementById("subcategories"+i)))
		{
			if (which && which==i) this_div.style.display = this_div.style.display=="block" ? "none" : "block"
			else this_div.style.display = "none"
		}
	}
}

function mark(what)
{
	with (document)
	{
		for (i=0; i < links.length; i++)
		{
			if (links[i].className.indexOf("subcat")>-1)
			{
				links[i].className = links[i].name==what ? "subcaton" : "subcatoff"
			}
		}
	}
}

//-->