/*------------------------------ 

	link.js
	jQueryを使用しています。

------------------------------ */


$(document).ready(function(){


	// ------------------------------------------------------
	// 折りたたみ
	// ------------------------------------------------------

	// 対象を隠す
	$("dl.zenkoku-link").hide();


	// 展開するための要素（クリックで展開）
	$("#furl")
		.hover(
			function () {
				$(this).css({ "text-decoration":"underline" , "cursor":"pointer"});
			},
			function () {
				$(this).css({ "text-decoration":"none" , "cursor":"default"});
			}
		)
		.click(function() {
			$("+dl" , this).slideToggle("fast");
	});
});

