// JavaScript Document

lastScrollY1=0;
function heartBeat1()
{ 
	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-lastScrollY1); 
	if(percent>0)
		percent=Math.ceil(percent); 
	else 
		percent=Math.floor(percent); 
	document.getElementById("lovexin121").style.top=parseInt(document.getElementById("lovexin121").style.top)+percent+"px";
	document.getElementById("lovexin141").style.top=parseInt(document.getElementById("lovexin141").style.top)+percent+"px";	 
	lastScrollY1=lastScrollY1+percent; 
	
}
suspendcode121="<DIV id=\"lovexin121\" style='right:0px;POSITION:absolute;TOP:10px;width:0;height:0;border:0px;'></div>"
suspendcode141="<DIV id=\"lovexin141\" style='right:0px;;POSITION:absolute;TOP:300px;padding:10px 0 0 0px;width:100px;height:50px;border:0;background:url(../images/qq.jpg);'><a target=blank href=tencent://message/?uin=249754338 &Site=在线客服&Menu=yes style='display:block;width:70px;height:25px;'><img border=0 SRC=http://wpa.qq.com/pa?p=1:249754338:1 alt=[在线客服]></a></div>"
document.write(suspendcode121); 
document.write(suspendcode141); 
window.setInterval("heartBeat1()",1);
 
