function renderCart(products){
  var totalNumProducts = 0;
  var grandTotal = 0;
  var count = 0;
  $j(".cart ul").html('');
  tempProducts = products;
  tempProducts.reverse();
  tempProducts.each(function(product) {
    totalNumProducts = totalNumProducts + parseInt(product.quantity,10);
    grandTotal = grandTotal + (parseInt(product.price,10) * parseInt(product.quantity,10));
    if(count < 20){
      $j('.cart ul').append('<li>'+product.quantity+' X '+product.name+'</li>');
    }
    count++;
  });
  totalNumProducts = parseInt(totalNumProducts,10);
  $j('#numberOfBasketItems, #total-bottles').html(totalNumProducts.toFixed(0));
  grandTotal = grandTotal;
  $j('#total-cost').html(grandTotal.toFixed(2));
}

