// JavaScript Document
window.onload=function(){
       var o=document.getElementById('infozone');
       window.setInterval(function(){scrollup(o,18,0);},5000);
}

function scrollup(o,d,c){
       if(d==c){
              var t=o.firstChild.cloneNode(true);
              o.removeChild(o.firstChild);
              o.appendChild(t);
              t.style.marginTop=o.firstChild.style.marginTop='0px';
       }
       else{
              var s=3,c=c+s,l=(c>=d?c-d:0);
              o.firstChild.style.marginTop=-c+l+'px';
              window.setTimeout(function(){scrollup(o,d,c-l)},100);
       }
}
document.write('<div style="float:left; padding-top:7px;"><b>特别推荐</b>：</div><div id="infozone"><div><a href="../info/info_159.htm" target="_blank">武夷山门票大全</a></div><div><a href="../info/show.asp?id=376" target="_blank">武夷山九曲溪竹筏</a></div><div><a href="../info/info_379.htm" target="_blank">武夷山印象大红</a></div></div>');