﻿// 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:100px;z-index:10;'></div>"
suspendcode14="<DIV id=\"scoll_r\" style='right:1px;POSITION:absolute;top:100px;z-index:11;'><h3><a href='#'  target='_blank'></a></h3><ul><li><a target=blank href=tencent://message/?uin=464245849&Site=思迈尔房产&Menu=yes><img border='0' SRC=http://wpa.qq.com/pa?p=1:464245849:1 alt='置业顾问' width=65></a></li><li><a target=blank href=tencent://message/?uin=522517311&Site=思迈尔房产&Menu=yes><img border='0' SRC=http://wpa.qq.com/pa?p=1:522517311:1 alt='置业顾问' width=65></a></li><li><a target=blank href=tencent://message/?uin=95375122&Site=思迈尔房产&Menu=yes><img border='0' SRC=http://wpa.qq.com/pa?p=1:95375122:1 alt='置业顾问' width=65></a></li><li><a target=blank href=tencent://message/?uin=181690191&Site=思迈尔房产&Menu=yes><img border='0' SRC=http://wpa.qq.com/pa?p=1:181690191:1 alt='置业顾问' width=65></a></li><li><a target=blank href=tencent://message/?uin=495357506&Site=思迈尔房产&Menu=yes><img border='0' SRC=http://wpa.qq.com/pa?p=1:495357506:1 alt='置业顾问' width=65></a></li></ul></div>"
document.write(suspendcode12); 
document.write(suspendcode14); 
window.setInterval("heartBeat()",1);