$(document).ready(function() {
  //$('.commenthider').slideUp();
  $('.commentinput').slideUp();
  //$('.commentbox').slideUp();
  $('.togglecomments').toggle(function() {
    $(this).siblings().slideUp('normal');
    }, function() {
    $(this).siblings().slideDown('normal');
    });
  $('.makecomment').click(function() {
    $(this).siblings().slideDown('normal');
    $(this).slideUp('normal');
    });
  $('.globalhide').toggle(function() {
    $('.commenthider').slideUp();
    $('.commentbox').slideUp();
    $(this).html('Show All Comments');
    }, function() {
    $('.commenthider').slideDown();
    $('.commentbox').slideDown();
    $(this).html('Hide All Comments');
    });
});
