// JavaScript Document
$(document).ready(function() {
						   
		////////////////////////////
		//Coulissement de légende (Une partie caché à visible)
		$('.cartouche.caption').hover(function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:220});
		}, function() {
			$(".cover", this).stop().animate({top:'163px'},{queue:false,duration:220});
		});
		
});
