// BEGIN DROPDOWN MENU  //////////////////////////////////
<!--//--><![CDATA[//><!--
	startList = function() 
	{
		if (document.all&&document.getElementById) 
		{
			navRoot = document.getElementById("nav");
			for (i=0; i<navRoot.childNodes.length; i++) 
			{
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") 
				{
					node.onmouseover=function() 
					{
						this.className+=" over";
						hideSelects('hidden');
					}
					node.onmouseout=function() 
					{
						this.className=this.className.replace(" over", "");
						hideSelects('visible');
					}
				}
			}
		}
	}

	function hideSelects(action) 
	{
		//possible values for action are 'hidden' and 'visible'
		if (action!='visible')
		{
			action='hidden';
		}
		if (navigator.appName.indexOf("MSIE")) 
		{
			for (var S = 0; S < document.forms.length; S++)
			{
				for (var R = 0; R < document.forms[S].length; R++) 
				{
					if (document.forms[S].elements[R].options) 
					{
						document.forms[S].elements[R].style.visibility = action;
					}
				}
			} 
		}
	}

	window.onload=startList;
	//--><!]]>
// END DROPDOWN MENU  //////////////////////////////////