$(document).ready(function(){
						   
	var maskHeight = $(document).height();
	var maskWidth = $(window).width();
	
	$('#mask').css({'width':maskWidth,'height':maskHeight,backgroundColor:"#6c605b"});   
	$("#cls").click(function(){
							 
		$('#mask').hide("slow");
		$("#start_notice").hide("slow");
		
	}); 
});
