$(document).ready(function(){
	//$('a').click(function(){return false});
	$('.testimonial-home').animate({opacity: .3}, 1000);
	//$('.testimonial-home:eq[1]').animate({opacity: .6}, 1000);
	$('.testimonial-home').hover(function(){
		$(this).animate({opacity: .99}, 300);
	},function(){
		$(this).animate({opacity: .3}, 100);
	});
});