<!--
//アコーディオン
$(function(){
    $(".acc dd").css("display","none");
	
	$(".acc dt").hover(function(){
			$(this).css("background-color","#efefef");
	},
		function () {
		$(this).css("background-color","#ffffff");
	});
	
    $(".acc dt").click(function(){
			
			if($(this).next("dd").css("display") == "none"){
				$(this).addClass("accnow");
			}
			else{
				$(this).removeClass("accnow");
			}
            $(this).next("dd").toggle("fast");	

    });
})
// -->
