$(document).ready(function() {
	$(".accordion dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".accordion dd").css("display","none");
	$(".accordion dt").click(function(){
		$(this).next().slideToggle("fast");
		});
});

//dlタグにアコーディオン用のクラス名を設定すると中の要素が隠れる。
//dtタグにポインタスタイルを指定し、クリックで展開。
//速度調整は、fast/middle/slowで調整。

