<!--
var arTimeouts = new Array();

function doMouseOver(nNav)
{	
	tmeClearOtherMenus(nNav);	
	dispDD(nNav);
}

function doMouseOut(nNav)
{
	tmeClearMenu(nNav);
}

function tmeClearMenu(nNav)
{		
	arTimeouts[nNav] = setTimeout("clearMenu(" + nNav + ")",100);		
}

function tmeClearOtherMenus(nNav)
{		
	for(i=1;i<8;i++)
	{
		if(i !=nNav)
		{
			arTimeouts[i] = setTimeout("clearMenu(" + i + ")",100);		
		}
	}	
}

function clearMenu(nNav)
{
	var oTd;
	oTd = document.getElementById("Nav" + nNav);
	oTd.className="navButton";
	
			
	oDiv = document.getElementById("navDiv" + nNav);
	if(oDiv != null && oDiv != undefined)
	{
		oDiv.style.display = "none";
	}		
}

function dispDD(nNav)
{		
	stopHide(nNav);
	
	oTd = document.getElementById("Nav" + nNav);
	oTd.className = "navButtonOn";
	
	oDiv = document.getElementById("navDiv" + nNav);
	if(oDiv != null && oDiv != undefined)
	{
		var X = findPosX(oTd);
		var Y = findPosY(oTd);	
		var sLeft = (X + 10);  //(oTd.offsetWidth + X);
		var sTop = (Y) + (oTd.offsetHeight);
		oDiv.style.left = sLeft;
		oDiv.style.top = sTop;
		oDiv.style.display = "block";			
	}
}

function stopHide(nNav)
{	
	if(arTimeouts[nNav] != undefined && arTimeouts[nNav] != null)
	{
		var oTimeOut = arTimeouts[nNav]
		if(oTimeOut != null)
		{
			clearTimeout(oTimeOut);
		}
	}
}
//-->

function navURL(sURL)
{
	document.location = sURL;
}