$(document).ready(function(){
	$("#slider1").SNAZslider();  

	$("#kontakt").submit(function(){

		// 'this' refers to the current submitted form
		var str = $(this).serialize();
 
		$.ajax({
			type: "POST",
			url: "kontakt.php",
			data: str,
			success: function(msg){
 
				$("#f_wiad").ajaxComplete(function(event, request, settings){
 
					if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
					{
						result = '<div class="wiadomosc_ok">Twoja wiadomość została wysłana! Wkrótce się z Tobą skontaktujemy.</div>';
						$("#pola").fadeOut();
						$("#srodek").animate({
						height: '220px'
						}, 1000, function() {
						});

						$("#wiadomosc_ok").fadeIn();
					}
					else
					{
							if (msg == 'Podaj adres email!')
							{
								result = '<div class="wiadomosc_blad wb2"><---------Podaj adres email</div>';
							}
							else
							{
								result = '<div class="wiadomosc_blad">Błąd systemu mailowego</div>';
							}
					}
					$(this).html(result);
				});
 
			}
 
		});
 
		return false;
 
});












});

