<!--
var topics_open  = "/images/topics_m.gif";	// −の画像
var topics_close = "/images/topics_p.gif";	// ＋の画像
var topics_open_h  = "/images/topics_mr.gif";	// マウスオーバー時の−の画像
var topics_close_h = "/images/topics_pr.gif";	// マウスオーバー時の＋の画像

$("#topics").ready(function(){
	// class が plus の dt はデフォルト非表示
	$("dt.plus").next().children(".openTopic").css("display","none");

	$("dt").hover(
		function(){
			if ( $(this).children().attr("src") == topics_open ) {
				$(this).children().attr("src",topics_open_h);
			} else {
				$(this).children().attr("src",topics_close_h);
			}
		},
		function(){
			if ( $(this).children().attr("src") == topics_open_h ) {
				$(this).children().attr("src",topics_open);
			} else {
				$(this).children().attr("src",topics_close);
			}
		}
	);

	$("dt").css("cursor","pointer").click(
		function(){
			$(this).next().children(".openTopic").slideToggle("fast");
			if ( $(this).children().attr("src") == topics_open ) {
				$(this).children().attr("src",topics_close);
			} else if ( $(this).children().attr("src") == topics_open_h ) {
				$(this).children().attr("src",topics_close_h);
			} else if ( $(this).children().attr("src") == topics_close ) {
				$(this).children().attr("src",topics_open);
			} else if ( $(this).children().attr("src") == topics_close_h ) {
				$(this).children().attr("src",topics_open_h);
			}
		}
	);
});
//-->