$(document).ready(function() {

  $(".commentWrap").children('a').click(function() {
       $comments = $(this).parent().siblings('.commentsWrap');
       toggleExpandLink($comments);
       return false;
  });

  $(".replyLink").click(function() {
      $val = $(this).text();
      if($val == "Reply") {
        $(this).text("Close");
      } else {
        $(this).text("Reply");
      }
       toggleExpandLink($(this).siblings('.replyForm'));
       return false;
  });

  $("#topic").change(function() {
    if($(this).val() != 'kw'){
      $(this).parent().submit();
    }
  });

  $("#print").click(function() {
      window.print();
      return false;
    });
});


function toggleExpandLink($toggledElem) {
  $toggledElem.slideToggle(400);
}