/******************************************************************************
* ixoctBasket.js
******************************************************************************/


isoYUILoader.onReady(function () {
    YAHOO.util.Event.onContentReady("ixoct-nb-product", function() {
		/* Panier Prêt */
		gshp.basket.on('ready', function () {
			basketData();
		});
		
		gshp.basket.on('change', function () {	
			basketData();
		});
			
		/* Panier start working */
		gshp.basket.on('busyStart', function () {

		});
	
		/* Panier end working */
		gshp.basket.on('busyEnd', function () {

		});
		
		function basketData() {
			
			var nbreProduit = 0;

			if (!gshp.basket.isEmpty()) {
				gshp.basket.eachItem(function (item) {
					nbreProduit = nbreProduit + parseFloat(item.getField('quantity'));
				});
				
				$('#ixoct-nb-product').html('&nbsp;('+nbreProduit+')');
				
			} else {
				$('#ixoct-nb-product').html('&nbsp;(0)');
			}
		}
	});
});
