function operateMenu() {
	var menu=document.getElementById('menu');
	var Lists=menu.getElementsByTagName('LI');
	for(var i=0; i<Lists.length; i++) {
		Lists[i].onmouseover=function() {
			this.className=(this.className=='drop')?'':'drop';
		}
		Lists[i].onmouseout=function() {
			this.className=(this.className=='drop')?'':'drop';
		}
	}
}