// JavaScript Document
//background:url(images/online.jpg) no-repeat top left; 

document.writeln("<div id=\"sorollDiv1\" style=\"width:120px; height:150px; left:10px; position:absolute; top:200px;\">")
//document.writeln("<div style=\"margin:0px 5px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");
//document.writeln("<div style=\"margin:0px 3px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");
//document.writeln("<div style=\"margin:0px 2px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");
//document.writeln("<div style=\"margin:0px 1px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");

document.writeln("<table width=\"100\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">")
document.writeln("  <tr>")
document.writeln("    <td align=\"center\" height=\"35\"></td>")
document.writeln("  </tr>")
document.writeln("  <tr>")
document.writeln("    <td height=\"35\" align=\"center\" style=\"color:#000000;\"><a target=\"blank\" href=\"msnim:chat?contact=TNE8@msn.com&Site=Chat with me\"><img src='images/msn.gif' alt=\"Chat with me\" border=\"0\" /></a></td>")
document.writeln("  </tr>")
document.writeln("  <tr>")
document.writeln("    <td height=\"35\" align=\"center\" style=\"color:#000000;\"><a target=\"blank\" href=\"msnim:chat?contact=zhlzhlzhl@hotmail.com&Site=Chat with me\"><img src='images/msn.gif' alt=\"Chat with me\" border=\"0\" /></a></td>")
document.writeln("  </tr>")
document.writeln("  <tr>")
document.writeln("    <td height=\"35\" align=\"center\" style=\"color:#000000;\"><a target=\"blank\" href=\"msnim:chat?contact=universal_remote@msn.com&Site=Chat with me\"><img src='images/msn.gif' alt=\"Chat with me\" border=\"0\" /></a></td>")
document.writeln("  </tr>")
document.writeln("</table>")

//document.writeln("<div style=\"margin:0px 1px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");
//document.writeln("<div style=\"margin:0px 2px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");
//document.writeln("<div style=\"margin:0px 3px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");
//document.writeln("<div style=\"margin:0px 5px; height:1px; overflow:hidden; background:#EFEFEF;\"></div>");
document.writeln("</div>")

var lastScrollY=0;
function heartBeat(){ 
	diffY = document.documentElement.scrollTop;
	percent = 0.1*(diffY-lastScrollY);
	if(percent > 0)
		percent = Math.ceil(percent);
	else
		percent = Math.floor(percent);
		
	document.getElementById("sorollDiv1").style.top=parseInt(document.getElementById("sorollDiv1").style.top)+percent+"px";
	document.getElementById("sorollDiv1").style.left=document.body.clientWidth-document.body.scrollLeft-130+"px";
	
	lastScrollY= lastScrollY + percent;
}
window.setInterval("heartBeat()",1);