<!--//--><![CDATA[//><!--

function isdefined( variable)
{
    return (typeof(window[variable]) == "undefined")?  false: true;
}


startList = function() {
	cssdropdownRoot = document.getElementById("nav");
	for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
		node = cssdropdownRoot.childNodes[x];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" over";
				
				if(activeSubmenu == "sub3" && this.id == 'ove'){
					document.getElementById('sub3').style.display='none';
				}
			}
			node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				
				if(activeSubmenu == "sub3" && this.id == 'ove'){
					document.getElementById('sub3').style.display='';
				}
			}
		}
	}
}

//--><!]]>


