$(document).ready(function(){

	
	$(".th p, .th .play").hide();
	
	$(".th").hover(function(){
		$(this).children("p").show();
		$(this).children(".play").show();
		
	}, function() {
		$(this).children("p").hide();
		$(this).children(".play").hide();
	});



	 
});

