$(function() {

  $('#shop-cart-mini-order').live('submit', function(e) {
    $.cookie('browsing', null, {path:'/'} );
    $.cookie('browsing', window.location.href, {path:'/'} );
  });

  $('.shop-cart-mini-review a').live('click', function(e) {
    $.cookie('browsing', null, {path:'/'} );
    $.cookie('browsing', window.location.href, {path:'/'} );
  });

  if ( $('#shop-cart-mini-order').length > 0 ) {
    $('h3#apply a').attr('href','/shop/cart');

  }

});

