$(function() {
  notification = $('<div id="notification">Товар добавлен в корзину</div>');
  $('body').append(notification);
});

function notify(message) {
  notification = $('#notification');
  notification.html(message);

  notification.css('top', ($(window).height() - notification.height()) / 2 + $(window).scrollTop() + 50 + 'px');
  notification.css('left', ($(window).width() - notification.width()) / 2 + $(window).scrollLeft() + 'px');
  notification.css('opacity', 0.9);
  notification.css('z-index', 100000);
  $(notification).show().delay(1500).animate({ top: $('.header .cart').offset().top, left: $('.header .cart').offset().left, opacity: 0}).animate({top: -100});
}

$(function() {
  $('form.buy_now_form').submit(function() {
    $.post('/eshop/cart/add', $(this).serialize(), function (data) {
      $('div.basket-wrapper').replaceWith(data);
      notify('Товар добавлен в корзину');
    });
    return false;
  });
});



