function sendForm () {
	$('#response').html("<h3>Please wait...</h3>");
	$('#kontakt_form table, #kontakt_form div').animate({opacity: 0}, 500);	
	$.post("/index.php?send_form=true", $("#kontakt_form").serialize(),
	   function(data){								
		if ($(data).find("div.message-warning")) {
			$('#response').html($(data).find("div.message-warning"));
			$('#kontakt_form table, #kontakt_form div').animate({opacity: 100}, 500);
		}
		if ($(data).find("h1#success").length == 1) {
			$('#kontakt_form table, #kontakt_form div').empty();
			$('#response').html($(data).find("h1#success").text());
		}
	});	
}

/*
function sendForm () {	
	$.post("/index.php", { results : $('#kontakt_form').serialize() },
	   function(data){
		$('#response').append(data);	   
	});	
}*/

