$(document).ready(function()
{
	/* WSZYSTKIE STRONY */
	
	$("div#kontakt").click(function()
	{
		document.location.href='kontakt';
		/*if($("div#formularz").css("display") == "none")
		{
			$("div#formularz").slideDown("normal");
		} else {
			$("div#formularz").slideUp("normal");
		}*/
	});
	
	/* LISTA PRODUKTOW */
	$("div.produkt td").hover(function()
	{
		$("img", this).css("border","1px #BBB solid");
	}, function()
	{
		$("img", this).css("border","1px #DDD solid");
	});
	
	/* STRONA PRODUKTU */
	
	$(".zdjecie2").hover(function()
	{
		$(this).removeClass("zdjecie2").addClass("zdjecieAktywne");
	}, function()
	{
		$(this).removeClass("zdjecieAktywne").addClass("zdjecie2");
	});
	
	$(".naglowek").hover(function()
	{
		$(".informacja", this).css("display", "");
		$(this).css("color", "red");
	}, function()
	{
		$(".informacja", this).css("display", "none");
		$(this).css("color", "#363636");
	});
});

function sprawdzFormularz()
{
	var go = true;
	var komunikat = '';
	if($("input[name='imie']").val().length < 1)
	{
		go = false;
		komunikat += "Wpisz imię i nazwisko\n";
	}
	if($("input[name='telefon']").val().length < 1)
	{
		go = false;
		komunikat += "Wpisz Telefon\n";
	}
	if($("input[name='email']").val().length < 1)
	{
		go = false;
		komunikat += "Wpisz e-mail\n";
	}
	if($("textarea[name='wiadomosc']").val().length < 1)
	{
		go = false;
		komunikat += "Wpisz wiadomość\n";
	}
	if(komunikat.length > 0)
	{
		alert(komunikat);
	} else {
		alert('Wiadomość wysłana. Nasz doradca wkrótce skontaktuje się z Państwem.');
	}
	return go;
}

