$(document).ready(
function()
{
$('#formularz_kontakt').submit
 (
 function()
  {
  var error = '';
   $(".req").each(function(i)
   	{
   	if(this.value=='')
   		{
   		error += 'pole ' + this.name + ' jest puste \n';
  			this.style.background='#fffb35';
   		}
   	});
  if(error!='') 
  		{
  		alert(error+'Wypełnij zaznaczone pola');
  		return false;
  		}
  else
  		{
  		//$('#load').html('Wysyłanie formularza. Proszę czekać...');
  		//$('#obrazek_gif').show();
  		return true;
  		}
  		
  }
 )
$('#formularz_kredyty').submit
 (
 function()
  {
  var error = '';
   $(".req").each(function(i)
   	{
   	if(this.value=='')
   		{
   		error += 'pole ' + this.name + ' jest puste \n';
  			this.style.background='#fffb35';
   		}
   	});
  if(error!='') 
  		{
  		alert(error+'Wypełnij zaznaczone pola');
  		return false;
  		}
  else
  		{
  		//$('#load').html('Wysyłanie formularza. Proszę czekać...');
  		//$('#obrazek_gif').show();
  		return true;
  		}
  		
  }
 ) 
 
 

}
);

