

/*--------------------

FAQアコーディオンスクリプト２
よくあるご質問に使用

--------------------*/

jQuery(function () {
	
	//初期化 読み込み時は非表示
	jQuery(".faq_area .faq_qbox").css({"display":"none"});		
	
	//マウスオーバー時　カーソール表示
	jQuery(".faq_area h3.h3style_faq").mouseover(function () {
		jQuery(this).css({"cursor":"pointer"});	
		this.style.backgroundColor = "#FFDD87";
	});
	
	
	jQuery(".faq_area h3.h3style_faq").mouseout(function () {
		this.style.backgroundColor = "#FFE5A3";
	});


	//dtクリック時次のdd表示
	jQuery(".faq_area h3.h3style_faq").click(function () {
		//jQuery("dd:not(:first)").hide();
		jQuery(this).next().slideToggle(10);				 
	});
	
});




