﻿var marqueeContent=new Array();   //滚动主题
                  	
marqueeContent[0]='<a href="http://www.sjzykyy.com/zt/ydb/index.htm" target="_blank" class="red"><strong>+ 石守礼教授中西特色治疗视神经萎缩</strong></a>';
marqueeContent[1]='<a href="http://www.sjzykyy.com/zt/jnks/index.html" target="_blank" class="red"><strong>+ 石家庄眼科医院护士技能大赛圆满结束</strong></a>';
marqueeContent[2]='<a href="http://www.sjzykyy.com/zt/yzrw/index.html" target="_blank" class="red"><strong>+ 应征入伍者的福音-石家庄眼科医院</strong></a>';
marqueeContent[3]='<a href="http://www.sjzykyy.com/zt/jmsx/index.html" target="_blank" class="red"><strong>+ 新款角膜塑形镜帮您轻松敲开军营门</strong></a>';
marqueeContent[4]='<a href="http://www.sjzykyy.com/zt/yjpk/" target="_blank" class="red"><strong>+ 新款眼镜大PK-石家庄眼科医院</strong></a>';
var marqueeInterval=new Array();  //定义一些常用而且要经常用到的变量
var marqueeId=0;
var marqueeDelay=4000;
var marqueeHeight=20;
function initMarquee() {
 var str=marqueeContent[0];
 document.write('<div id=marqueeBox style="overflow:hidden;height:'+marqueeHeight+'px" onmouseover="clearInterval(marqueeInterval[0])" onmouseout="marqueeInterval[0]=setInterval(\'startMarquee()\',marqueeDelay)"><div>'+str+'</div></div>');
 marqueeId++;
 marqueeInterval[0]=setInterval("startMarquee()",marqueeDelay);
 }
function startMarquee() {
 var str=marqueeContent[marqueeId];
  marqueeId++;
 if(marqueeId>=marqueeContent.length) marqueeId=0;
 if(marqueeBox.childNodes.length==1) {
  var nextLine=document.createElement('DIV');
  nextLine.innerHTML=str;
  marqueeBox.appendChild(nextLine);
  }
 else {
  marqueeBox.childNodes[0].innerHTML=str;
  marqueeBox.appendChild(marqueeBox.childNodes[0]);
  marqueeBox.scrollTop=0;
  }
 clearInterval(marqueeInterval[1]);
 marqueeInterval[1]=setInterval("scrollMarquee()",10);
 }
function scrollMarquee() {
 marqueeBox.scrollTop++;
 if(marqueeBox.scrollTop%marqueeHeight==marqueeHeight){
  clearInterval(marqueeInterval[1]);
  }
 }
initMarquee();
