
  $(document).ready(function() {
    
    setTimeout("$('div#module_result').fadeOut(500)", 2000);
    
    // zabezpieczenie przed botami :-) (kij im w zad!)
    $("form#module_form").prepend("<input type='hidden' name='confirm' value='1' />");
    
    $("form#module_form div#module_footer a").click(function() {    
      var OK = true;
      $('.contact_inp').each(function(i) {
        field_name = $(this).attr('name');
        if (field_name == 'name' || field_name == 'mail' || field_name == 'message' ) {
          if ($(this).val() == '') {
            alert("Nie wypełniono wymaganych pól!");
            OK = false;
            return false;
          }
        }
      });
      
      
      if (OK) {
        $(this).fadeOut(100);
        $(this).parent().parent().css('opacity', 0.4).submit();
        return true;
      }
      else {
        return false;
      }
    });
    
  });
