document.writeln("<script>");
document.writeln("\/\/初始化");
document.writeln("var def=\"1\";");
document.writeln("function mover(object){");
document.writeln("  \/\/主菜单");
document.writeln("  var mm=document.getElementById(\"m_\"+object);");
document.writeln("  mm.className=\"m_li_a\";");
document.writeln("  \/\/初始主菜单先隐藏效果");
document.writeln("  if(def!=0){");
document.writeln("    var mdef=document.getElementById(\"m_\"+def);");
document.writeln("    mdef.className=\"m_li\";");
document.writeln("  }");
document.writeln("  \/\/子菜单");
document.writeln("  var ss=document.getElementById(\"s_\"+object);");
document.writeln("  ss.style.display=\"block\";");
document.writeln("  \/\/初始子菜单先隐藏效果");
document.writeln("  if(def!=0){");
document.writeln("    var sdef=document.getElementById(\"s_\"+def);");
document.writeln("    sdef.style.display=\"none\";");
document.writeln("  }");
document.writeln("}");
document.writeln("");
document.writeln("function mout(object){");
document.writeln("  \/\/主菜单");
document.writeln("  var mm=document.getElementById(\"m_\"+object);");
document.writeln("  mm.className=\"m_li\";");
document.writeln("  \/\/初始主菜单还原效果");
document.writeln("  if(def!=0){");
document.writeln("    var mdef=document.getElementById(\"m_\"+def);");
document.writeln("    mdef.className=\"m_li_a\";");
document.writeln("  }");
document.writeln("  \/\/子菜单");
document.writeln("  var ss=document.getElementById(\"s_\"+object);");
document.writeln("  ss.style.display=\"none\";");
document.writeln("  \/\/初始子菜单还原效果");
document.writeln("  if(def!=0){");
document.writeln("    var sdef=document.getElementById(\"s_\"+def);");
document.writeln("    sdef.style.display=\"block\";");
document.writeln("  }");
document.writeln("}");
document.writeln("<\/script>");
document.writeln("")
