// JavaScript Document
function onloading()
{
	var root = document.getElementById("navmenu");
	for(i=0 ;i< root.childNodes.length;i++)
	{  
		
		if(root.childNodes[i].nodeName == 'LI')
		{
			var innerChild = root.childNodes[i];
			
					innerChild.onmouseover = function()
					{ 
					
					var tagA = this.getElementsByTagName('DIV');
					if(tagA[0])
					tagA[0].style.display = 'block';
										
					var tagB = this.getElementsByTagName('A');
					if(tagB)
					tagB[0].className = 'active';
				
					
					
					}
					innerChild.onmouseout = function()
					{ 
					var tagA = this.getElementsByTagName('DIV');
					if(tagA[0])
					tagA[0].style.display = 'none';
					var tagB = this.getElementsByTagName('A');
					if(tagB)
					tagB[0].className = '';
					}
		 }
			
	}
}
window.onload = onloading;
