jQuery(function(){

// Initiate shopping basket to DOM

/*
  sammy.js routes for:
  
  get cart: GET '#/cart'
  add item to cart: POST '#/cart'
  
  
  
  cart events: cart-update
    
*/

var cart = $.sammy(function() {

  this.get('#/cart', function() {
    //$('#main').text('Welcome!');
    alert("Show Cart");
  });
  
  this.post('#/cart', function() {
    alert("Add item to cart");
  });

});

cart.run();

$('#cart').hide();

$.get('/cart',function (data, textStatus) {
  $('#cart').append(data).fadeIn(2000);
});




});

