// JavaScript Document
		var s=5;
		var t=2000;//循环周期(1秒)
		var timer;
		function changeMc(x,y){
		// x是当前显示的层 y是即将显示的层
		 clearTimeout(timer);
		 if (x!=y){
		 document.getElementById('yp_card'+x).style.display = "none";
		 document.getElementById('yp_card'+y).style.display = "block";
		 s=y
		 }
		}
		function hi(){
		timer=setTimeout("sh()",t)
		}
		function sh(){
			s=(s>=3)?1:s+1
			for (var i=1;i<=3;i++){
				document.getElementById("yp_card"+i).style.display = "none";
			}
			document.getElementById("yp_card"+s).style.display = "block"
			timer=setTimeout("sh()",t)
		}
		sh();
		
          function switchmodTag(modtag,modcontent,modk) {
            for(i=1; i <8; i++) {
              if (i==modk) {
                document.getElementById(modtag+i).className="menuOn";document.getElementById
(modcontent+i).className="slidingList";}
              else {
                document.getElementById(modtag+i).className="menuNo";document.getElementById
(modcontent+i).className="slidingList_none";}
            }
          }
          
          function Tolink(id)
          {
            var LB='';
            switch(id)
            {
                case 1:
                    LB=2;break;
                case 2:
                    LB=3;break;
                case 3:
                    LB=4;break;
                default:
                    LB=1;break;
            }
            window.open('/Menber/Info/InfoList.aspx?LB='+LB);
          }
          
          function GoLink(id)
          {
            var LB='';
            switch(id)
            {
                case 1:
                    LB=7;break;
                case 2:
                    LB=8;break;
                case 3:
                    LB=10;break;
                case 4:
                    LB=9;break;
                case 5:
                    LB=11;break;
                case 6:
                    LB=23;break;
                case 7:
                    LB=24;break;
                default:
                    LB=6;break;
            }
            window.open('/Menber/Info/InfoList.aspx?LB='+LB);
          }
