﻿// JavaScript Document
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*/}
    
//alert(diffY);
percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("scoll_l").style.top=parseInt(document.getElementById

("scoll_l").style.top)+percent+"px";
document.getElementById("scoll_r").style.top=parseInt(document.getElementById

("scoll_l").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"scoll_l\" style='left:1px;POSITION:absolute;top:200px;z-index:10;'></div>"
suspendcode14="<DIV id=\"scoll_r\" style='right:1px;POSITION:absolute;top:200px;z-index:11;'><h3><a href='http://www.hitooo.com/dialog_1.htm'  target='_blank'></a></h3><ul><li class='gyhwq'><a href='http://www.hitooo.com/dialog_1.htm' target='_blank'>游　艇</a></li><li class='gyhwq'><a href='http://www.hitooo.com/dialog_1.htm' target='_blank'>机　票</a></li><li class='gyhwq'><a href='http://www.hitooo.com/dialog_1.htm' target='_blank'>酒　店</a></li><li class='gyhwq'><a href='http://www.hitooo.com/dialog_1.htm' target='_blank'>出　游</a></li><li class='gyhwq'><a href='http://www.hitooo.com/dialog_1.htm' target='_blank'>综　合</a></li><li class='gyhwq'><a href='http://www.hitooo.com/yuding.php?action=yd&type=gx' alt='个性预订' target='_blank'><font color='#FF0000'>预　订</font></a></li><li><a target=blank href=tencent://message/?uin=1257912147&Site=海豚网&Menu=yes><img border='0' SRC=http://wpa.qq.com/pa?p=1:1257912147:1 alt='综合客服' width=50></a></li><li><a target=blank href=tencent://message/?uin=742989265&Site=海豚网&Menu=yes><img border='0' SRC=http://wpa.qq.com/pa?p=1:742989265:1 alt='综合客服' width=50></a></li></ul></div>"
document.write(suspendcode12); 
document.write(suspendcode14); 
window.setInterval("heartBeat()",1);