$(document).ready(function() {
	
	
	$('#testimonials-list li').hover(function() { 
		
		$(this).children('blockquote').fadeIn();
		
		}, function() { 
						
		$(this).children('blockquote').fadeOut();	
			
		});
		

		
			
});


