function menu_show(li) 
{
	var div = li.getElementsByTagName("div")[0];  
    div.style.display = "";
    div.style.zIndex = 100;  
    li.onmouseout = function()  
    {  
		div.style.display = "none"; 
		li.onmouseout = null;  
    }  
}