$(document).ready(function() {
	// home slide
	$("#open-campagnes").click(function () {
			$(this).toggleClass("open");
			$("#campagne-en-cours-home").slideToggle("slow");
	});
	
	// path home & selected
	$("#path a:first").addClass("home-path");
	$("#path a:last").addClass("selected-path");
	
	// zoom 
	var options = {
	    zoomWidth: 400,
		zoomHeight: 300,
		xOffset: 20,
		yOffset: 0,
		preloadText: 'Chargement...',
		position: "left"
	};
	
	$(".zoom").jqzoom(options);
	
	// delete "en attente" lines
	$("#user-commandes td:contains('Attente paiement')").parent().remove();
	
	// change fiche prod images
	$("#fiche-thumbs li a").each(function() {
		var big = this.href;
		var medium = $(this).find('img').attr('longdesc');
		this.href = "javascript:void(0);";
		
		$(this).click(function() {
			var $zoom = $("#fiche-img a").eq(0);
			$zoom.fadeOut(200, function() {
				$zoom.attr('href', big);
				$zoom.find('img').attr('src', medium);
				$zoom.fadeIn(250);
			});
		});
	});
});
