function showCart(data) {
  $('#cart .content').html(data);
  $('#cart').show();
}

function preview(id) {
  $.get('/ajax/preview/' + id, showCart);
  return false;
}

function add() {
  $('#cart').hide();
  $.post('/ajax/add', $('#addform').serialize(), showCart);
}

function update() {
  $('#cart').hide();
  $.post('/ajax/update', $('#updateform').serialize(), showCart);
}

function destroy() {
  $('#cart').hide();
  $.post('/ajax/destroy', $('#updateform').serialize(), showCart);
}
