// JavaScript Document

document.writeln("<div id=\"sorollDiv1\" style=\"width:42px; height:50px; background-color:#FFFFFF; left:10px;position:absolute;top:200px;\">")
document.writeln("<table width=\"50\" height=\"192\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">")
document.writeln("  <tr>")
document.writeln("    <td width=\"50\" align=\"center\"><a target=\"blank\" href=\"msnim:chat?contact=jvindustrial@hotmail.com&amp;Site=Chat with me\"> <img src='images/MSN.JPG' alt=\"Chat with me\" border=\"0\" /></a></td>")
document.writeln("  </tr>")
document.writeln("  <tr>")
document.writeln("    <td height=\"25\" align=\"center\">MSN</td>")
document.writeln("  </tr>")
document.writeln("  <tr>")
document.writeln("    <td align=\"center\"><script type=\"text/javascript\" src=\"http://download.skype.com/share/skypebuttons/js/skypeCheck.js\"></script><a href=\"skype:jvindustrial?chat\"><img src=\"images/skype.jpg\" style=\"border: none;\" alt=\"Chat with me\" /></a></td>")
document.writeln("  </tr>")
document.writeln("  <tr>")
document.writeln("    <td height=\"25\" align=\"center\">Skype</td>")
document.writeln("  </tr>")
document.writeln("</table>")
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";
	
	lastScrollY= lastScrollY + percent;
}
window.setInterval("heartBeat()",1);