$(function(){
	$(".thumb p").css({
		opacity:0
	});
	$(".thumb")
	.hover(function(){
		$(this).find("p").stop().animate({"opacity": .7},200);
	},function(){
		$(this).find("p").stop().animate({"opacity": .0},700);
	});
	
});
	

