﻿// JavaScript Document
        function changeItemtop(n)
        {
          for(i=1;i<=11;i++)
          {
            document.getElementById("m" + i).blur()//取消链接的虚线框
            document.getElementById("bv0" + i).className = "rhfo" // 将content01 -- 03 隐藏
            document.getElementById("t" + i).className = "ajwtoplibg"	 // 将b1--b3 转成非当前
          }
          document.getElementById("t" + n).className = "ajwtoplibg1" // 显示当前按钮 
          document.getElementById("bv0" + n).className = "ajwtop2g" // 显示当前按钮对应的内容 
          return false
        }