/* last_rls.js */

$(document).ready(function(){

	$("#last_rls li a").each(function(){
	
	//on affiche...
		$(this).mouseenter(function(){
		
			$(this).children("span").text("En savoir plus");
		
			$(this).children("span").stop(true,true).animate({
				height: "29px",
				marginTop: "72px",
				opacity: "0.85",
				borderTop: "1px solid #fff"
			});
		});
	
	//on masque...	
		$(this).mouseleave(function(){
		
			$(this).children("span").stop(true,true).animate({
				height: "0",
				marginTop: "102px",
				borderTop: "0"
			}, "fast", function(){
				
				$(this).text("");
				
			});			
			
		});
		
	});
	
});
