$(document).ready(function(){
	
	$(".t").hover(function(){
		$(this).find(".play").toggle(0);
		 
	});
	
	 
	$(".close").click(function(){
		$(".trailer").fadeOut(500);
	}); 
	
	$(".tr-th").hover(function(){
		$(this).find(".play2").toggle(0);
		 
	});
	 
});
