
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("lovexin14").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode14="<DIV id=\"lovexin14\" style='right:-25px;POSITION:relative;TOP:100px;'><ul class='piao'><li style='padding-top:12px; border-bottom:none;'><a href='/babyStar/default.asp' target='_blank' style='font-weight:bold'>专区首页</a></li><li style='padding-top:27px'><a href='/2008/newzc.asp' target='_blank'>会员注册</a></li><li><a href='http://vip.aiyingjiayuan.com/ ' target='_blank'>会员专区</a></li><li><a href='http://bb6.yashili.com/' target='_blank'>宝贝大赛</a></li><li><a href='/2008/xxhd_index.asp' target='_blank'>活动预报</a></li><li style='border-bottom:none'><a href='../index.asp' target='_blank'>育儿论坛</a></li></ul></div>"
//document.write(suspendcode12); 
document.write(suspendcode14); 
window.setInterval("heartBeat()",1);
