// JavaScript Document
//Fast to Slowでページ内移動
function pagetop(){
	if (document.all) { posi = document.body.scrollTop; }
	else { posi = window.pageYOffset; }
	moveObje(posi);
}
function moveObje(position) {

move = position / 10;

point = parseInt(position - move);

scrollTo(0,point);

if (point > 0) { setTimeout("moveObje(point)",1); }

}
//FAQページ
function answerOn(x){
	for(var i=1; i<=7; i++){
	document.getElementById("ans"+i).style.display="none";
	}
	document.getElementById("ans"+x).style.display="block";
	}
function answerClose(x){
	document.getElementById("ans"+x).style.display="none";
	}
