$(document).ready(function() {

	$('li').hover( 
		function() { $(this).children('.text-container').fadeIn('fast') },
		function() { $(this).children('.text-container').fadeOut('fast') }
	)

});
