﻿

$(document).ready(function(){
	$(function() {
		$('a.lightbox').lightBox({fixedNavigation:true});
	});

 	$("#contact").submit(function(){
 	  if($("#name").val().length == 0){
	    jAlert("Wypełnij polę <strong>Imię</strong>");
	    return false;
	 	}
 	  if(!$("#email").val().match(/^[0-9a-zA-Z._-]+@([0-9a-zA-Z.-]+\.)+[0-9a-zA-Z.-]{2,4}$/)){
	    jAlert("Wypełnij poprawnie pole <strong>E-mail zwrotny</strong>.");
	    return false;
	 	}
 	  if($("#phone").val().length == 0){
	    jAlert("Wypełnij polę <strong>Telefon</strong>");
	    return false;
	 	}
 	  if($("#content").val().length == 0){
	    jAlert("Wypełnij polę <strong>Treść</strong>");
	    return false;
	 	}
	 	
	 	$("#send").val("251f1324");
	 	
	 	return true;
	});
});
