function comment_pagination_handler(clp){
    $(".comment_pagination").click(function(event){
      event.preventDefault();
      $("#comments_wrapper").load(clp,
          {
              page: $(this).attr("href").split("/").pop()
          }, function(responseText, textStatus, XMLHttpRequest)
          {
              if(textStatus == 'success'){
                  $("#comments_wrapper").css({
                      opacity: .4
                  }).animate({
                      opacity: 1.0
                  }, 1000 );

              }
              comment_pagination_handler(clp);
          }
      );
    });
}

