/*

	Orzeł S.A.

	file: js/frontend/functions.js

	encoding: UTF-8

	author: Dawid Horodecki, http://horodecki.eu

	

	Copyright Enzo Sp. z o.o., http://enzo.pl

	

	Table of contents:

		Menu

		Light box

		Document ready

*/





/*	Menu

	==================================== */



function Menu() {

	$('#menu > li').hover(

		function() {

			$(this).addClass('selected');

		}, function() {

			$(this).removeClass('selected');

		}

	);

}





/*	Light box

	==================================== */



function LightBox() {

	$('a[@rel*=lightbox]').lightBox({

		imageLoading: './images/frontend/lightbox-loading.gif',

		imageBtnClose: './images/frontend/lightbox-close.gif',

		imageBtnPrev: './images/frontend/lightbox-prev.gif',

		imageBtnNext: './images/frontend/lightbox-next.gif',

		imageBlank: './images/frontend/lightbox-blank.gif'

	});

}





/*	Document ready

	==================================== */



$(document).ready(function() {

	Menu();

	LightBox();

});

/*	Walidacja formularza

	==================================== */
	

function SprawdzFormularz(f) {

    if (document.getElementById("imie").value =='') {

    alert('Nie podałeś/aś swojego imienia.');

    return false;

    }
    
    if ( ((document.getElementById("email").value.indexOf('@',1))==-1)||(document.getElementById("email").value.indexOf('.',1))==-1 ) {

    alert('Podałeś/aś  błędny adres e-mail');

    return false;

    }

    if (document.getElementById("priv").checked == false ) {

    alert('Musisz zgodzić się z Polityką Prywatności.');

    return false;

    } 



    else {

    return true;

    }

    }