$(document).ready(function(){
	// GESTION DE L'APPARTION ET DISPARITION DU PANIER
	var class_panier = $("#list-panier").attr("class");

	if (class_panier=="not_deroule") {
		$("#list-panier").hide();
	} else {
		$("#list-panier").slideDown();
	}

	/*
	$('.panier-detail').click(function() {
		if ($('#list-panier').css('display') == 'none') {
			$('#ecommerce_overlay').fadeIn(); 
			$('#list-panier').slideDown();

			// On remonte automatiquement en haut de la page
			$(document).scrollTop(0);

		} else {
			$('#list-panier').slideUp();
			$('#ecommerce_overlay').fadeOut();
		}
	});
	*/

	$("#bt-continuer").live("click",function(){
		window.parent.$.fn.fancybox.close();
	});
	////////////////////////////////////////////////

	//GESTION DES IFRAMES ET LIGHTBOX
	$(".lightbox").fancybox();
	/*IFRAME*/
	$("a.iframe").fancybox({ 
		'frameWidth':300,
		'frameHeight':160,
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayShow': false 
	}); 

	$("a.iframe2").fancybox({ 
		'frameWidth':600,
		'frameHeight':720,
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayOpacity': 0.5
	}); 

	$(".iframe3").fancybox({ 
		'frameWidth':700,
		'frameHeight':720,
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayShow': false 
	});

	$("a.iframe4").fancybox({ 
		'frameWidth':600,
		'frameHeight':350,
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayShow': false 
	});

	$("a.iframePanier").fancybox({ 
		'frameWidth':800,
		'frameHeight':700,
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayOpacity': 0.5
	});
	////////////////////////////////////////////////


	// VIDAGE DU PANIER
	$("#vide_panier").live("click",function(){
		if (confirm("Etes-vous sūr de vouloir vider votre panier?")) {
			var type = "vide_panier";
			$.ajax({		
				type:"POST",
				url:"ecommerce/include/traitements.inc.php",
				data : 'type=' + type,
				success: function(html)
				{
					$("#list-panier #list-panier-contenu").html(html); 
					$(".nombre-articles", top.document).html("0");
					$("#list-panier").slideUp("slow");
				}
			});
		} else {
			return false;	
		}
	});
	////////////////////////////////////////////////


	// SUPPRESSION D'UN ARTICLE DU PANIER
	$(".sup_article_panier").live("click", function() {
		if (confirm("Etes-vous sūr de vouloir supprimer cet article?")) {
			var id = $(this).attr("id");
			id = id.split("_");
			id = id[1];
			var type = "sup_article";
			var quantiteProduit = parseInt($(this).parent().parent().find('.qte_panier').text());

			$.ajax({		
				type:"POST",
				url:"ecommerce/include/traitements.inc.php",
				data : 'type=' + type + '&id=' + id,
				success: function(html)
				{ 
					$("#list-panier #list-panier-contenu").html(html); 
					var qte = parseInt($('.nombre-articles', top.document).text()) - quantiteProduit;
					$(".nombre-articles", top.document).html(qte);

					if (qte == 0) {
						$('.panier-detail').trigger('click');
					}
				}
			});
		} else {
			return false;	
		}
	});
	////////////////////////////////////////////////

	// AJOUT D'UNE QTE A UN ARTICLE
	$(".ajoute_qte_panier").live("click", function() {
		var id = $(this).attr("id");
		id = id.split("_");
		id = id[1];
		var type = "ajoute_qte";
		$.ajax({		
			type:"POST",
			url:"ecommerce/include/traitements.inc.php",
			data : 'type=' + type + '&id=' + id,
			success: function(html)
			{
				$("#list-panier #list-panier-contenu").html(html);

				var qte = parseInt($('.nombre-articles', top.document).text()) + 1;
				$(".nombre-articles", top.document).html(qte);
			}
		});
	});
	////////////////////////////////////////////////

	// RETIRE UNE QTE A UN ARTICLE
	$(".retire_qte_panier").live("click",function(){
		var id=$(this).attr("id");
		id=id.split("_");
		id=id[1];
		var type="retire_qte";
		$.ajax({			
			type:"POST",
			url:"ecommerce/include/traitements.inc.php",
			data : 'type=' + type + '&id=' + id,
			success: function(html)
			{ 
				$("#list-panier #list-panier-contenu").html(html); 
				var qte = parseInt($('.nombre-articles', top.document).text()) - 1;
				$(".nombre-articles", top.document).html(qte);
				if (qte == 0) {
					$('.panier-detail').trigger('click');
				}
			}
		});										   
	});
	////////////////////////////////////////////////


	// Ajoute un article dans le panier
	$('.article_index').click(function() {
		var qte = 1;
		var unite = false;
		var type = 'ajoute_panier';
		var id = $(this).attr('id').replace(/ajouter_/, '');

		var titre = $('#titre_' + id).text();
		var prix =  $('#prix_' + id).text();

		$.ajax({
			type:'POST',
			url:'ecommerce/include/traitements.inc.php',
			data : 'type=' + type + '&id=' + id + '&titre=' + titre + '&prix=' + prix + '&qte=' + qte + '&unite=' + unite,
			success: function() {
				//window.location.href = window.location.href;
				$('.iframePanier').trigger('click');

				var qte = parseInt($('.nombre-articles').text()) + 1;
				$(".nombre-articles").html(qte);
			}
		});

		return false;
	});
});

