(function($) {
  var totalItems = 0,
  totalPriceFormatted = '0,00',
  formatPrice = function(n) {
    var parts = ("" + n).split('.');
    return parts[0] + ',' + pad(parts[1]);
  },
  cartHtml = '<table><tfoot><tr><td></td><td>Total</td><td class="price">0,00 €</td></tr></tfoot><tbody></tbody></table>',
  checkoutLinks = '<p><a href="/es/gastos-de-envio.html">Gastos de envío</a> no incluidos</p><p><a href=\"/es/cart/show/\">Modificar</a></p>';
  if (totalItems) {
    $('div.front-links .cart-link')
      .append(' (' + totalItems + ')')
      .addClass('cart-link-with-content');
    $('div.front-links .links li:last-child').append('<div class="jscart">' + cartHtml + checkoutLinks + '</div>');
  }
}(jQuery));

