// JavaScript Document
lastScrollY=0;
function heartBeat(){
diffY=document.body.scrollTop;
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
document.all.lovexin14.style.pixelTop+=percent;
lastScrollY=lastScrollY+percent;
}
suspendcode14="<DIV id=lovexin14 style='right:0px;POSITION:absolute;TOP:100px;'><A HREF='/guestbook.asp' target='_blank'><img src='/images/zxly.gif' border=0 width='85' height='139'></A></div>"
document.write(suspendcode14);
window.setInterval("heartBeat()",1);


function show(i){
if (i.style.display == "none") {
		i.style.display = "";
	}else{
		i.style.display = "none";
	}
}
