$(document).ready(function() {
  $('#start_window').hide();
  $('#lista_miejscowosci').click(function(event) {
    event.preventDefault();
    $('#start_window').fadeIn("slow");
    return false;
  });
  $('#start_window_close').click(function(event) {
    event.preventDefault();
    $('#start_window').fadeOut("slow");
    return false;
  });
});
