// JavaScript Document
function jumpPageTop() {
 var anim = new YAHOO.util.Scroll(
  document.getElementsByTagName('html')[0],
  { scroll: { to: [0, 0] } },
  0.5,
  YAHOO.util.Easing.eathBoth
 );
 anim.animate();
}


