// Standard crossbrowser function for layer show
function showLeer(which) {
	for (i=1;i<12;i++)
	if (which != 'leaf'+i) document.getElementById('leaf'+i).style.display = "none";
	if (document.getElementById(which).style.display == "none") document.getElementById(which).style.display = ""
	else document.getElementById(which).style.display = "none";
}
function antiemail(a,b)
{
	return a + '@' + b + '.ru';
}

startList = function()
{
	if (document.getElementById&&!window.opera)
	{
		navRoot = document.getElementById("menu");
		node = navRoot.firstChild;
		while (node)
		{
			if (node.tagName == 'TBODY' || node.tagName == 'TR')
			{
				node = node.firstChild;
				continue;
			}

			if ((node.tagName=="TD") && (node.className=="menusub"))
			{
				node.onmouseover=function() { this.className="menusubover"; }
				node.onmouseout=function() { this.className="menusub"; }
			}

			node = node.nextSibling;
		}
	}
}
window.onload=startList;

