jQuery(function(){
       jQuery('.kontakt').ajaxForm(function(data){
                 if (data==1)
                 {
                 jQuery('.contactform').fadeOut('fast');
                 jQuery('p.dziekujemy').fadeIn('slow');
            }
            else if (data==5)
            {
                jQuery('p.wrongemail').fadeOut('fast');
                jQuery('p.wrongquestion').fadeIn('slow');
            }
            else if (data==4)
            {
                jQuery('p.wrongemail').fadeIn('slow');
                jQuery('p.wrongquestion').fadeOut('fast');
                
            }
            });

jQuery('.kontakt').submit(function(data) {

});
       
});




	
