	$(document).ready(function(){  
	$(".flipBT").click(function(){  
		var chemin = $(this).find(".chemin").attr("alt");          
	$("#flipBox").flip({  
	direction: 'bt',  
	color: '',  
	speed: 300,  
	content: $('.grande_image img').attr({ src: chemin })  
});             
});             
			$(function() {  
			$('.miniatures img').animate({"opacity": .5 });  
			$('.miniatures img').hover(function() {  
			$(this).stop().animate({ "opacity": 1 });  
		}, function() {  
			$(this).stop().animate({ "opacity": .5 });  
		});  
		});  
		});  
