$(document).ready(function()  {
	if (!$('form p.error').length) {
	$(".form").hide();
	}
	$("h2.add_comment").click(function () {
    $(".form").show("slow");
  });
});
