function initProducts(){
	
	/* LOUPE */
	$('.jcarousel-skin-tango li').mouseover(function() {
		jQuery(this).find(".loupe").show();
		jQuery(this).find(".loupeAlone").show();
	});
	
	$('.jcarousel-skin-tango li').mouseout(function() {
		jQuery(this).find(".loupe").hide();
		jQuery(this).find(".loupeAlone").hide();
	});
	
	/* Affichage de la zone de détails de produits */
	$('.jcarousel-skin-tango li').click(function() {
		$('.productDetails').fadeIn("fast");
		$('.whiteBgProduct').fadeIn("fast");
	});
	
	$('a.btClose').click(function() {
		$('.productDetails').fadeOut("fast");
		$('.whiteBgProduct').fadeOut("fast");
	});
	$('.whiteBgProduct').click(function() {
		$('.productDetails').fadeOut("fast");
		$('.whiteBgProduct').fadeOut("fast");
	});
	/*$(':not(a.zoom)').click(function() {
		$('.productDetails').fadeOut("fast");
		$('.whiteBgProduct').fadeOut("fast");
	});*/
	
	$('.productDetails').hide();
	$('.loupe').hide();
	$('.loupeAlone').hide();
	$('.whiteBgProduct').hide();	
	


};
