function backToTop (y) {
	if (!y) var y = document.body.scrollTop || document.documentElement.scrollTop;
	var speed = 15; // 加速度（大きいほどゆっくりに）
	next_position = parseInt (y - y * 2 / speed);
	scrollTo (0, next_position);
	if (next_position > 0) setTimeout ('backToTop (next_position)' , 1);
}

