
 
$(document).ready(function(){

	
	 
	 $(".wrap").height($(document).height());
	 
	 $(".in").click(function(){
		$(".wrap").fadeOut(500);
	});
	 
	 
	
			$(".tr-th").hover(function(){
		$(this).find(".play2").toggle(0);
		 
	});
	 
});
