initAreaMenu = function() 
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("areas");
		navMenu = document.getElementById("areaNavi");
		
		navRoot.onmouseover = function() 
		{
			navMenu.style.display = 'block';
		}
		
		navRoot.onmouseout = function() 
		{
			navMenu.style.display = 'none';
		}
	}
}
