/************************************************
  
	Site Name: Sagittarius
	Author: Japan Media Creations
	PageScroll

************************************************/

var position = 1;
function goPageTop() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {
      var scrPx = document.body.parentNode.scrollTop;
   } else {
      var scrPx = document.body.scrollTop;
   }
   
   if(position < 50 && scrPx) {
      scrPx = (scrPx > 2) ? Math.ceil(scrPx*.5000) : 1;
      position++;
      scrollBy(0, -scrPx);
      setTimeout("goPageTop()", 30);
  	  position = 1;
   }else{
      scrollTo(0, 0);
      position = 1;
   }
}

