/* Copyright UAB "Plieninis Skydas" */

var mymenu=new Array()
function openItem(name){
	window.clearTimeout(mymenu[name]);
	document.getElementById(name).style.overflow='visible';
	document.getElementById(name).style.display="block";

}

function closeItem(name){
	mymenu[name]=window.setTimeout("document.getElementById('"+name+"').style.overflow='hidden';",50);
}

startMenu = 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"; }
				node.onmouseout=function() { this.className=this.className.replace(" over", ""); }
			}
		}
	}
}
//window.onload=startMenu;


function setBackgroundIn(name) {
		document.getElementById(name).style.background='#7096DC';
		document.getElementById(name).style.color='#000066';
}

function setBackgroundOut(name) {
		document.getElementById(name).style.background='#274B8E';
		document.getElementById(name).style.color='#E5EEFE';
}


