$(function(){
  $('input.delete').each(function(){
    $(this).hide().before('<a href="javascript:;" class="delete" title=\"Odebrat položku z košíku\"><img src="./design/delete.png" alt=\"Odebrat\" /></a>')
  });
  $('input.update').each(function(){
    $(this).hide().before('<a href="javascript:;" class="update" title=\"Přepočítat počet položek v košíku\">Přepočítat</a>')
  });
  
  $('a.delete,a.update').click(function(){
    $(this).next().click();
  });

  $('#delivery_edit').hide();
  
  $('input[name="delivery"],input[name="payment"]').change(function(){
      $('#delivery_edit').click();
  });
});
