// ===========================================

// Q&A JS

// ===========================================


// toggle
// -------------------------------------------

$(function() {

	$("#main .entryTitle").after("<p id=\"toggleguide\"><span class=\"read\">質問をクリックすると答えが表示されます。</span><strong class=\"allopen\">すべてひらく</strong><strong class=\"allclose\">すべてとじる</strong></p>");

  var Obj = $("#main .entry");

	$(".entry-body", Obj).hide();

	$("h3", Obj).hover(function(){
		$(this).addClass("over");
	},function(){
		$(this).removeClass("over");
	});

	$("h3", Obj).click(function(){
		$(this)
		.toggleClass("open")
		.next().slideToggle("fast");
	});

	$("#main #toggleguide strong").hover(function(){
		$(this).addClass("over");
	},function(){
		$(this).removeClass("over");
	});

	$("#main #toggleguide .allopen").click(function(){
		$(".entry-body", Obj).slideDown("fast");
		$("h3", Obj).addClass("open");
	});

	$("#main #toggleguide .allclose").click(function(){
		$(".entry-body", Obj).slideUp("fast");
		$("h3", Obj).removeClass("open");
		$("h3", Obj).removeClass("over");
	});
});


