$(document).ready(
	function() {

		$(".tooltip").hover(
			function() {
				$(this).find(".tooltip-txt").fadeIn("fast");
			},
			function() {
				$(this).find(".tooltip-txt").fadeOut("fast");				
			}
		);

		$("#contact-form").submit(function() {
			var counter = 0;
			if ($("#inp_imie").val() != "") {
				$(".c-val-name").removeClass("error");
				$(".c-val-name .msg-row").text("Pole wymagane");
				++counter;
			}
			else {
				$(".c-val-name").addClass("error");
				$(".c-val-name .msg-row").text("Podaj imię i nazwisko");
			}
			if ($("#inp_email").val() != "") {
				$(".c-val-email").removeClass("error");
				$(".c-val-email .msg-row").text("Pole wymagane");
				++counter;
			}
			else {
				$(".c-val-email").addClass("error");
				$(".c-val-email .msg-row").text("Podaj adres email");
			}
			if (counter == 2) {
				return true;
			}
			else {
				return false;
			}

		});
		
		
	});
