//ワークス左ナビ用
$(document).ready(function() {
	$(".catList dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".catList dd").css("display","none");
	$(".catList dt").click(function(){
		$(this).next().slideToggle("fast");
		});
});
$(document).ready(function() {
	$(".yearList dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".yearList dd").css("display","none");
	$(".yearList dt").click(function(){
		$(this).next().slideToggle("fast");
		});
});
