﻿// JScript 文件

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("lovexin12").style.top=parseInt(document.getElementById
("lovexin12").style.top)+percent+"px";
document.getElementById("lovexin14").style.top=parseInt(document.getElementById
("lovexin12").style.top)+percent+"px";
lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"lovexin12\" style='left:5px;POSITION:absolute;TOP:30px;'><img src=\"ad/8082.gif\"><br><br></div>";
//"<div id=\"divqq\"><br>&nbsp;&nbsp;<img src=\"http://wpa.qq.com/pa?p=1:1054312501:17\" height=17 border=0 align=middle>&nbsp;&nbsp;<a target=\"blank\" class=\"blue2\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=1054312501&Site=www.bagelun.com&Menu=yes\">在线客服</a>"+
//"<br><br>&nbsp;&nbsp;&nbsp;<span class=\"blue2\">电话:152-67181810</span></div></div>";
suspendcode14="<DIV id=\"lovexin14\" style='right:3px;POSITION:absolute;TOP:30px;'><img src=\"ad/8081.gif\"><br><br></div>"
document.write(suspendcode12); 
document.write(suspendcode14); 
window.setInterval("heartBeat()",1);