$(document).ready(function() {

// Partie pour le changement des images : Bloc details Opération
$(".imgSecond").click(function() {
 var arg = $(this).attr("src");
 var legende = $(this).attr("name");
	$("#src_image").fadeOut("slow", function() {
	$("#src_image").attr("src", arg).fadeIn("slow");
	$("#text_image").html(legende);
	});
 }); 


// Pour les images des references
$(".SousImage").click(function() {
 var arg = $(this).attr("src");
	var eImgPrimaire = $('.imgPrimaire img', $(this).parent().parent()); 
	eImgPrimaire.fadeOut("slow", function() {
		$(this).attr("src", arg).fadeIn("slow");
	});
 }); 
 
 
 
});

