﻿$(document).ready(function(){
	$("html").hide();
	//初期表示
	$(".answer").hide();

	$(".question > a").click(function(){
			//id属性の番号を取得
			var no = $(this).attr("id").substr(8,4);
			
			//対応する回答を表示/非表示する
			$(this).parents(".faq-box").children(".answer").toggle();
			
			//画面遷移しないようにする
			return false;
	});
	$("html").show();
});


