aLi[i].onmouseover=function(){
//鼠标经过一级菜单,二级菜单动画下拉显示出来
this.getElementsByTagName('ul')[0].style.overflow='visible';
}
//鼠标离开菜单,二级菜单动画收缩起来。
aLi[i].onmouseout=function(){
this.getElementsByTagName('ul')[0].style.overflow='hidden';
}