$(document).ready(function(){
	$('form').submit(function() {
		var send=true;
		$(this).find('.formularPovinna').each(function(index,element){
			if ($(element).val()=='') {
				if (send) {
					alert(t.vyplnte_pole+' '+$(element).attr('title'));
					element.focus();
					send=false;
				} 
			}
		});
		return(send);
	});
});

