// JavaScript Document

$(document).ready(function(){
	$(".lien_deroulant").hover(function(){
		$(this).stop().animate({height:"200px", top:"-=152px"},{queue:false, duration:500});
	},function(){
		$(this).stop().animate({height:"50px", top:"0px"},{queue:false, duration:250});
	});			
});
