
var speed=10;
var doctop=0;
var currentpos=0,alt=1,curpos1=0,curpos2=-1
function initialize(){
startit()
}

function scrollwindow(){

if (document.all)
temp=document.documentElement.scrollTop
else
temp=window.pageYOffset
if (alt==0)
alt=1
else
alt=0
if (alt==0)
curpos1=temp
else
curpos2=temp
if (curpos1!=curpos2){
if (document.all)
currentpos=document.documentElement.scrollTop-speed
else
currentpos=window.pageYOffset-speed
window.scroll(0,currentpos)
}
else{
currentpos=0
window.scroll(0,currentpos)
}
if(document.documentElement.scrollTop<5)
{  
window.clearInterval(intervalID); 
}
}
function startit(){

intervalID=setInterval("scrollwindow()",1)
}
lastScrollY=0;

function heartBeat(){ 
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
    diffY = document.documentElement.scrollTop;
else if (document.body)
    diffY = document.body.scrollTop
else
    {/*Netscape stuff*/}
    
    
percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("scrollfull").style.top=parseInt(document.getElementById("scrollfull").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
}
var rUrl=window.top.location;
var divtop =document.documentElement.clientHeight-130;
var divleft =(document.documentElement.clientWidth-998)/2;
suspendcode=('<div id="scrollfull" style="position: absolute;z-index:99999;top:'+divtop+'px;left:'+divleft+'px;width:998px;height:125px;background:url(http://www.qianhai.com/2011.gif) no-repeat bottom center;">');
suspendcode+=("<a style=\"margin-top:60px;float:left;width:360px;height:65px;bottom:0px;\" href=\"http://www.qianhai.com/html/myfc.html\" target=\"_blank\"></a>");
suspendcode+=("<a style=\"margin-top:60px;float:left;width:210px;height:65px;bottom:0px;\" href=\"http://qianhai.zoossoft.net/LR/Chatpre.aspx?id=LCC42080155&p=&r="+rUrl+"\" target=\"_blank\" ></a>");
suspendcode+=("<a style=\"margin-top:60px;float:left;width:210px;height:65px;bottom:0px;\" href=\"http://tel.kuaishang.cn/call.php?sid=2010211036&did=577\" target=\"_blank\" ></a>");
suspendcode+=("<a style=\"margin-top:60px;float:left;width:210px;height:65px;bottom:0px;\" href=\"http://www.qianhai.com/map/map.html\" target=\"_blank\" ></a>");
suspendcode+=("</div>");

document.write(suspendcode);
window.setInterval("heartBeat()",10);
//Author：韩东雪设计工作室 Download: http://www.codefans.net


