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