jQuery(document).ready(function($){	

	var color_no_focus = $('#form input').css('color');
	
	$('input, textarea').focus(function(event) {	
		var target = $(event.target);
		var val = $(target).val();
		if (val == "Imię i nazwisko") {
			target.val('');
			target.css('color', 'black');
		}
		else if (val == "Email") {
			target.val('');
			target.css('color', 'black');
		}
		else if (val == "Wiadomość") {
			target.val('');
			target.css('color', 'black');
		}
		
	});
	$('input, textarea').focusout(function(event) {

		var target = $(event.target);
		var length = $(target).val().length;
		if (length == 0 && $(target).hasClass('imie')) 
		{ 
			$(target).val('Imię i nazwisko');
			$(target).css('color', color_no_focus);
		}
		else if (length == 0 && $(target).hasClass('email')) 
		{ 
			$(target).val('Email');
			$(target).css('color', color_no_focus);
		}
	    else if (length == 0 && $(target).hasClass('wiadomosc')) 
		{ 
			$(target).val('Wiadomość');
			$(target).css('color', color_no_focus);
		};
		
	});
});



