$(document).ready(function() {

      $('#id2').click(function(){
      $("#dva1").fadeIn().hide();
      $("#dva2").fadeIn().show();

           });
           
      $('#id1').click(function(){
      $("#dva2").fadeIn().hide();
      $("#dva3").fadeIn().hide();
      $("#dva1").fadeIn().show();

           });


       window.ramka = false;

      $('#nazwa').keyup(function(){
       var str = $(this).attr('value');

              if(!str){

              $("#dva1").fadeIn().hide();

              }else{

              $("#dva3").fadeIn().show();

              }

           });

                        $('#form0').submit(function () {

                        if (this.nazwa.value == '') {
                                $('#info').text('proszę podać nazwę firmy !');
                                return false;
                        }


                        if (this.mail.value == '') {
                                $('#info').text('nie podano adresu e-mail !');
                                return false;
                        }


                        maska = /^([a-zA-Z_.+-]+)@([a-zA-Z0-9.-]+)\.([a-zA-Z]+)$/;
                         if (maska.test(this.mail.value) == false) {
                                $('#info').text('podany adres e-mail jest nieprawiłowy !');
                                return false;
                        }

                        if (this.opis.value == '') {
                                $('#info').text('nie podano opisu działalności firmy !');
                                return false;
                        }

                         if (this.adres.value == '') {
                                $('#info').text('nie podano adresu firmy !');
                                return false;
                        }

                         if (this.klucz.value == '') {
                                $('#info').text('nie podano słów kluczowych !');
                                return false;
                        }
                });
});
