shad=new Array ("../img/css/menu.png","../img/css/arr_bg.gif","../img/css/drx.gif","../img/css/liarr_bg.gif");
function menu()
{
	var Images=new Array();
	for (var i=0; i<shad.length; i++)
	{
		Images[i]=new Image();
		Images[i].src=shad[i];
	};

};
menu();

startList = function() {
if (document.all&&document.getElementById) {
	navRoot = document.getElementById("nav");
	if(navRoot) {
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="DIV") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
		   }
		}
	}}
}

window.onload = function() {
	startList();
}

function popup(newURL) 
{
  window.open(newURL, "newwin", "toolbar=no,width=570,height=500,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no");
}