$(document).ready(function(){
  // bouton -
  $('.lessProd').click(function(e){
    e.preventDefault();
    var val = parseInt($('input', $(this).parent()).val());
    if (val > 1){
      $('input', $(this).parent()).val(val  - 1);
    }
  });
  // bouton +
  $('.moreProd').click(function(e){
    e.preventDefault();
    var val = parseInt($('input', $(this).parent()).val());
    $('input', $(this).parent()).val(val  + 1);
  });
  // ajout au panier
  $('.prodaddtoSelection').click(function(e){
    e.preventDefault();
    var val = "quantity=" + $('input', $(this).parent()).val();
    $.ajax({
      type: "POST",
      url: $(this).attr('href'),
      data: val,
      cache: false,
      success: function(e){
        $('#dynamicOrderInfo').load(
          '/order/countProduct?new=1&random='+new Date().getTime(),
          null,
          function(e){
            $('.noticeCart').effect("highlight", {color:"#C1EF77"}, 2000);
            $('.noticeCart').fadeOut(1000);
            $('.endCommande').load('/order/finishLink');
          }
        );
      }
    });
  });
});