var marqueeContent=new Array(); //滚动新闻
marqueeContent[0]='<A href="http://www.qdhnews.com.cn" target=_blank>首页</A> | <A href="http://www.qdhnews.com.cn/col1489/col1510/index?id=1510" target=_blank>淳安新闻</A> | <A href="http://www.qdhnews.com.cn/col4947/index?id=4947" target=_blank>生态建设</A> | <A href="http://www.qdhnews.com.cn/col1493/index?id=1493" target=_blank>旅游天地</A> | <A href="http://www.qdhnews.com.cn/col1491/col1521/index?id=1521" target=_blank>工业看台</A> | <A href="http://www.qdhnews.com.cn/col1492/index?id=1492" target=_blank>绿色田野</A> | <A href="http://www.qdhnews.com.cn/col1494/index?id=1494" target=_blank>教育视窗</A> | <A href="http://www.qdhnews.com.cn/col1490/col1518/index?id=1518" target=_blank>理论园地</A> | <A href="http://www.qdhnews.com.cn/col1489/col5282/index.htm1?id=5282" target=_blank>焦点图片</A> | <A href="http://bbs.qdhnews.com.cn/" target=_blank><FONT color=#ff0000>千岛湖论坛</FONT></A><BR>';
marqueeContent[1]='<A href="http://www.qdhnews.com.cn" target=_blank>首页</A> | <A href="http://www.qdhnews.com.cn/col1490/col4590/index?id=4590" target=_blank>民生百事</A> | <A href="http://www.qdhnews.com.cn/col1489/col1513/index?id=1513" target=_blank>视频淳安</A> | <A href="http://www.qdhnews.com.cn/col1489/col1510/col1583/index?id=1583" target=_blank>本网时评</A> | <A href="http://www.qdhnews.com.cn/col1490/index?id=1490" target=_blank>热点专题</A> | <A href="http://www.qdhnews.com.cn/col1496/index?id=1496" target=_blank>睦州文苑</A> | <A href="http://www.qdhnews.com.cn/col1497/col1556/index?id=1556" target=_blank>健康生活</A> | <A href="http://www.qdhnews.com.cn/col1497/col1558/index?id=1558" target=_blank>消费广场</A> | <A href="http://www.qdhnews.com.cn/col4933/index?id=4933" target=_blank>游戏频道</A> | <A href="http://www.qdhnews.com.cn/col1489/col1510/col1585/index?id=1585" target=_blank>外媒看淳安</A><BR>';
marqueeContent[2]='<A href="http://www.qdhnews.com.cn" target=_blank>首页</A> | <A href="http://www.qdhnews.com.cn/col1489/col1511/index?id=1511" target=_blank>国内新闻</A> | <A href="http://www.qdhnews.com.cn/col1489/col1512/index?id=1512" target=_blank>国际新闻</A> | <A href="http://www.qdhnews.com.cn/col1489/col1511/col5284/index.htm1?id=5284" target=_blank>周边县市</A> | <A href="http://www.qdhnews.com.cn/col1489/col1511/col1587/index?id=1587" target=_blank>财经资讯</A> | <A href="http://www.qdhnews.com.cn/col1489/col1511/col1590/index?id=1590" target=_blank>社会纵横</A> | <A href="http://www.qdhnews.com.cn/col1489/col1512/col1593/index?id=1593" target=_blank>体育世界</A> | <A href="http://www.qdhnews.com.cn/col1489/col1511/col1589/index.htm1?id=1589" target=_blank>时尚娱乐</A> | <A href="http://www.qdhnews.com.cn/col1495/index?id=1495" target=_blank>法治时空</A> | <A href="http://www.qdhnews.com.cn/col1498/index?id=1498" target=_blank>广告</A>　<A href="http://www.qdhnews.com.cn/col1498/col1561/index?id=1561" target=_blank>公告</A><BR>';

var marqueeInterval=new Array(); //定义一些常用而且要经常用到的变量
var marqueeId=0;
var marqueeDelay=2500;
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()",20);
 }
function scrollMarquee() {
 marqueeBox.scrollTop++;
 if(marqueeBox.scrollTop%marqueeHeight==(marqueeHeight-1)){
 clearInterval(marqueeInterval[1]);
 }
 }
initMarquee();
