$(document).ready(function(){
	$(".Mask").fadeTo(100,0.5);
	$(".c_flash_text").mouseenter(function(){
		if(170 < $(this).offset().top){$(this).animate({ top: "0px"}, 500 ).prev(".Mask").animate({ top: "0px"}, 500 );}
	}).mouseleave(function(){
		$(this).animate({ top: "180px"}, 500 ).prev(".Mask").animate({ top: "180px"}, 500 );
	});

});