// JavaScript Document

$(document).ready(function(){
	//Full Caption Sliding (Hidden to Visible)
	$('.image.legendeFull').hover(function(){
		$(".cover", this).stop().animate({marginTop:'-50px'},{queue:false,duration:160}); //ht img-ht bandeau
	}, function() {
		$(".cover", this).stop().animate({marginTop:'0px'},{queue:false,duration:160}); //ht img
	});
});
