// アコーディオンナビゲーション$(function(){	$("nav").css("width","15px");	$("nav ul li a#navi").click(function(){		$("nav").animate({width : "317px"},"slow","swing");		if($("nav").css("width")=="317px"){			$("nav").animate({width : "15px"},"fast","swing");			return false;		}		})})// アコーディオンコメント01$(function(){	$("#comments form").css("height","0px");	$("#comments h2.h2load").click(function(){		$("#comments form").animate({height : "450px"},"slow","swing");		if($("#comments form").css("height")=="450px"){			$("#comments form").animate({height : "0px"},"fast","swing");			return false;			}		})	})
