$(function() {
    /* Photo */
    $('.product-img-mini').click(function() {
        $.ajax({type: "POST",
           url: AJAX_PATH + "product.ajax.php",
           data: {type: 'big-pict', id: $(this).attr('id')},
           beforeSend:function() {
               $('#product-pict-large').hide();
               $('#product-img-preload').show();
           },
           success:function(data) {
                $('#product-pict-large').html(data);
                $('#product-img-preload').hide();
                $('#product-pict-large').show();
           }
         });
    });
	
    /* Ajout au panier */
    $('#add-cart a').click(function() {
        var quantity = $('#quantity').val();
        if($('#colors').length > 0) {
            var item = $('#colors').val();
        } else if($('#sizes').length > 0) {
            var item = $('#sizes').val();
        } else {
            var item = $("#item_id").val();
        }
        if(!item) {
            alert('Veuillez choisir une taille ou une couleur');
            return;
        }
        $.ajax({type: "POST",
           url: AJAX_PATH + "cart.ajax.php",
           data: {add: '1', item_id: item, quantity: quantity},
           success:function(data) {
                location.href = URL_PATH + 'panier/';
           }
        });
    });
    
    /* Adaptation du stock */
    $('#sizes').change(function() {
      if($('#colors').length > 0) {
          var item = $('#colors').val();
      } else if($('#sizes').length > 0) {
          var item = $('#sizes').val();
      }
      $.ajax({type: "POST",
         url: AJAX_PATH + "cart.ajax.php",
         data: {type:'adaptQuantity', item_id: item},
         success:function(data) {
          //alert(data);
          $('#quantity').html("");
          for (i=1; i<=data; i++){
            $('#quantity').append('<option value= "'+i+'" >'+i+'</option>');
          }
         }
      });
    });
    
	/*Zoom*/
	$('a.zoom').click(function(){
		$(this).colorbox({
			href: $("#product-pict-large img").attr('zoom'),
			width:700,
			height:700
		});
	});
	
});
/*
function aff_Product(produit){
	window.open(produit,'produit','width=600, height=600, scrollbars=1, menubar=0, location=0, fullscreen=0, resize=0');
}*/