$(document).ready(function() {

  $("#maska").show();
  $("#regulamin").show();
    
  $(".close").click(function() {
    $("#regulamin").hide("fast");
    $("#maska").hide();
  });
  
  return(false);

});


