$(document).ready(function() {

  $('a.item_link').click( function() {
    $(this).parents('tr').next('tr.item_details').children('td').toggle();
  });

  $("a.photo").lightBox();
});
