// 折りたたみ$(document).ready(function() {	$(".faq_action dt").hover(function(){		$(this).css("cursor","pointer"); 	},function(){		$(this).css("cursor","default"); 		});	$(".faq_action dd").css("display","none");	$(".faq_action dt").click(function(){		$(this).next().slideToggle("normal");		});	$(".yearlyList span").hover(function(){		$(this).css("cursor","pointer"); 	},function(){		$(this).css("cursor","default"); 		});	$(".yearlyList ul").css("display","none");	$(".yearlyList span").click(function(){		$(this).next().slideToggle("normal");		});});// 折りたたみここまで
