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