
$(document).ready(function() {
	$(".detail").toggle();
	$("tbody th a").click(function() {
		$(this).parents("tr").next(".detail").toggle();
	});
	$("table a[href^=#]").click(function(event) {
		event.preventDefault();
		var anno = $($(this).attr("href"));
        if (anno.css("color") == "rgb(204, 51, 0)" || anno.css("color") == "#c30") {
			anno.css("color", "");
        } else {
			anno.css("color", "#c30");
        }
	});
	$("blockquote").children(":last-child").css("margin-bottom", "0");
});
