function startList(varMenuName)
{
if (document.all&&document.getElementById)
	{
	navRoot = document.getElementById(varMenuName);
		
	if (navRoot == null)
		{
		alert('menu not found');
		return;
		}
	/* get ALL the LI nodes */
			
	var objChild;
	objChild = navRoot.getElementsByTagName("LI")
		
	for (i=0; i <objChild.length; i++)
		{
		node=objChild[i];
		if (node.nodeName=="LI")
			{
			node.onmouseover=function() {this.className+=" over"; window.status='';}
			node.onmouseout=function() {this.className=this.className.replace(" over", "");window.status=''}
			}
		}

	/* Now get all the SPAN nodes */
	objChild = navRoot.getElementsByTagName("SPAN")
		
	for (i=0; i <objChild.length; i++)
		{
		node=objChild[i];
		if (node.nodeName=="SPAN")
			{
			node.onmouseover=function() {this.className+=" over"; window.status='';}
			node.onmouseout=function() {this.className=this.className.replace(" over", "");window.status=''}
			}
		}
			
			
	}
}
function show_search(id)
{
	var d = document.getElementById('idSearch'+id);
	for (var i = 1; i<=5; i++) {
		if (document.getElementById('idSearch'+i)) {
			document.getElementById('idSearch'+i).style.display='none';
			document.getElementById('idMenu'+i).style.backgroundColor='#555555';
		}
	}
	if (d) {
		d.style.display='block';
			document.getElementById('idMenu'+id).style.backgroundColor='#000000';
	}
}
