
$().ready(function() {
    $(".comments .inserisci-commento a").click(function(e){
    	  e.preventDefault();
          elem = $(".comments fieldset")
          if ($(elem).is(":hidden")) {
             $(elem).slideDown();
             $(this).html("chiudi");
             $(".comments").removeClass("comment-min-height").addClass("comment-max-height");
             shiftPosition();
          } else {
             $(elem).slideUp();
             $(this).html("inserisci un commento");
             $(".comments").removeClass("comment-max-height").addClass("comment-min-height");
             shiftPosition();
          }
    });
});