$(function(){
  /* Scroll Follow init *******************************************************/
  $('#cart').scrollFollow({offset : 20, container : "body-cart"})

  /* Compare products *********************************************************/
  $('.product a.compare').click(function(){
    var id = this.id.split('_')[1];
    $.post(
      '/shop/add-to-compare.html',
      {'product_id' : id},
      function(data){$('#compare_list').html(data);}
    );
    return false;
  });

  /* Cart products ************************************************************/
  $('.product a.buy, .compare_table a.buy').click(function(){
    var id = this.id.split('_')[1];
    $.post(
      '/shop/add-to-cart.html',
      {'product_id' : id},
      function(data){$('#cart_list').html(data); }
    );
    return false;
  });
});

function remove_from_compare(id, reload)
{
    $.post(
      '/shop/remove-from-compare.html',
      {'product_id' : id},
      function(data){
        $('#compare_list').html(data);
        if(reload == true){window.location = window.location;}
      }
    );
}

function remove_from_cart(id, reload)
{
    $.post(
      '/shop/remove-from-cart.html',
      {'product_id' : id},
      function(data){
        $('#cart_list').html(data);
        if(reload == true){window.location = window.location;}
      }
    );
}
