$(document).ready(function() {
    
  $('.reactions_link').click(function() {
      
      
      
      var id_array = $(this).attr('id').split('_');
      var poem_id = id_array[1];
      
      $('#show_reactions_' + poem_id).toggle();

    $.ajax({
      type: "POST",
      url: "/gedichten/",
      data: "action=show_comments&poem_id="+poem_id,
      dataType: "html",
        success: function(msg){  $('#show_reactions_' + poem_id).html(msg);}
    });

    
    
    
    
    return false;
      
  });
});


