// JavaScript Document

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("quick").style.top=parseInt(document.getElementById("quick").style.top)+percent+"px";



lastScrollY=lastScrollY+percent; 

//alert(lastScrollY);

}





ShowQuick="<DIV id=\"quick\" style='right:22px;POSITION:absolute;TOP:10px;'>";

ShowQuick=ShowQuick+"<img name=\"quickmenu\" src=\"../images/quickmenu.jpg\" width=\"66\" height=\"162\" border=\"0\" id=\"quickmenu\" usemap=\"#m_quickmenu\" alt=\"\" /><map name=\"m_quickmenu\" id=\"m_quickmenu\">";

ShowQuick=ShowQuick+"<area shape=\"rect\" coords=\"10,20,60,35\" href=\"Contact.aspx\" target=\"_self\" title=\"\" alt=\"\" />";

ShowQuick=ShowQuick+"<area shape=\"rect\" coords=\"10,75,70,90\" href=\"MessageAdd.aspx\" target=\"_self\" title=\"\" alt=\"\" />";

ShowQuick=ShowQuick+"<area shape=\"rect\" coords=\"10,130,70,145\" href=\"Contact.aspx\" target=\"_self\" title=\"\" alt=\"\" />";

ShowQuick=ShowQuick+"<area shape=\"rect\" coords=\"16,180,70,190\" href=\"Contact.aspx\" target=\"_self\" title=\"Yu?g\" alt=\"\" />";

ShowQuick=ShowQuick+"</map></div>";



document.write(ShowQuick); 

window.setInterval("heartBeat()",1);