// JavaScript Document




$(document).ready( function() {
	
	$('.liste_item').hover( function() {
			$('.liste_holder', this).stop().animate( { top:$('.liste_item').height() }, { duration:200 } );  
		}, function() {  
			$('.liste_holder', this).stop().animate( { top:0 }, { duration:300 } );
		}
	);
	
});
