function processLogin(hash) {
 // 
 user = document.forms['flogin'].fuser.value;
 pass = hex_md5(hex_md5(document.forms['flogin'].fpass.value) + hash);
 if (document.forms['flogin'].fsave.checked == true)
 {
  document.forms['login'].save.value = 'true';
 }
 document.forms['login'].user.value = user;
 document.forms['login'].pass.value = pass;
 document.forms['login'].submit();
}

startList = function() 
{
		navRoot = document.getElementById("menu");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() {
					this.className= 'tabover';	
				}
				node.onmouseout=function() 
				{
					this.className= 'tabdefault';
				}
			}
		}
}
 window.onload=startList;
