// ==================================================
// js/fold.js with jQuery
// last update: 2010-09-24 20:39:10 daiki
// ==================================================

$(function(){
    op_j = "[+] 開く";
    op_e = "[+] Open";
    cl_j = "[-] 閉じる";
    cl_e = "[-] Close";

    $("a.dlbutton").click(function(){
        cid = $(this).attr('id');
	dlid = "dl#d" + cid + ":not(:animated)";
	$(dlid).slideToggle("slow");
	if ($(this).text() == op_j) {
	    $(this).text(cl_j);
	}
	else if ($(this).text() == op_e) {
	    $(this).text(cl_e);
	}
	else if ($(this).text() == cl_j) {
	    $(this).text(op_j);
	}
	else if ($(this).text() == cl_e) {
	    $(this).text(op_e);
	}
	else {
	    $(this).text("Click !!");
	}
	return false;
    })
})

