// JavaScript Document

startList = function() 
	{
	if (document.all&&document.getElementById) 
		{
		cssdropdownRoot = document.getElementById("MainMenu");
		for (x=0; x<cssdropdownRoot.childNodes.length; x++) 
			{
			node = cssdropdownRoot.childNodes[x];
			if (node.nodeName=="LI") 
				{
				node.onmouseover=function() 
					{
					this.className+=" over";
					}
				node.onmouseout=function() 
					{
					this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
	
startList2 = function() 
	{
	if (document.all&&document.getElementById) 
		{
		cssdropdownRoot = document.getElementById("MainProgMenu");
		for (x=0; x<cssdropdownRoot.childNodes.length; x++) 
			{
			node = cssdropdownRoot.childNodes[x];
			if (node.nodeName=="LI") 
				{
				node.onmouseover=function() 
					{
					this.className+=" over";
					}
				node.onmouseout=function() 
					{
					this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}

if (window.attachEvent)
	{
	window.attachEvent("onload", startList);
	window.attachEvent("onload", startList2);
	}
else
	{
	window.onload=startList;
	window.onload=startList2;
	}


