// Boutique Comptoir de la Mer => Comportements
$(function(){

// Fonction pour centrer verticalement les vignettes : 
	
	//$(".product_picture .img_produit img").each(function(){
	//		$(this).css("margin-top", -$(this).height()/2);
	//	});
	
// Fonction pour le zoom sur la photo principale : 

	$("#image_produit img").each(function(i){
	  $this = $(this);
	  var src = $this.attr("src");
	  var title = $("#nom_produit").text();
	  var link = '<a class="thickbox" title="' + title + '" href="' + src + '" rel="galerie-prod"></a>';
	  $this.wrap(link);
	 });

// Fonction pour le zoom sur les photos secondaires : 
	  
	 $("#more_pictures img").each(function(i){
	 $this = $(this);
	 var src = $this.attr("src").replace(/thumbnails\//, "");
	 var title = $("#nom_produit").text();
	 var link = '<a class="thickbox" title="' + title + '" rel="galerie-prod" href="' + src + '" ></a>';
	 $this.wrap(link);
	});
	
// Fin des fonctions 	
	
 });