  $(document).ready(function(){
 

	$('#imienazwisko').focus(function(){
	if ($(this).val() == 'imię i nazwisko'){
	$(this).val('');
	}
	});

	$('#imienazwisko').blur(function(){
	if ($(this).val() == ''){
	$(this).val('imię i nazwisko');
	}
	});

	$('#mail').focus(function(){
	if ($(this).val() == 'e-mail'){
	$(this).val('');
	}
	});

	$('#mail').blur(function(){
	if ($(this).val() == ''){
	$(this).val('e-mail');
	}
	});
	
	$('#temat').focus(function(){
	if ($(this).val() == 'temat'){
	$(this).val('');
	}
	});

	$('#temat').blur(function(){
	if ($(this).val() == ''){
	$(this).val('temat');
	}
	});
	
	$('#tresc').focus(function(){
	if ($(this).val() == 'wpisz wiadomość'){
	$(this).val('');
	}
	});

	$('#tresc').blur(function(){
	if ($(this).val() == ''){
	$(this).val('wpisz wiadomość');
	}
	});
	
  });
