$(document).ready(function() {
	$("#contact_form_submit").click(function() {
		$("#loader").show();
		$("#contact_form").validate({
			rules: {
				vorname: "required",
				name: "required",
				email: {
					required: true,
					email: true
				},
				nachricht: "required"
			},
			messages: {
				vorname: "*",
				name: "*",
				email: "*",
				nachricht: "*"
			},
			submitHandler: function() {
				$.post("lib/content/kontakt/send_mail.php", {
					vorname:$("input[name=vorname]").val(),
					name:$("input[name=name]").val(),
					adresse:$("input[name=adresse]").val(),
					plz:$("input[name=plz]").val(),
					stadt:$("input[name=stadt]").val(),
					telefon:$("input[name=telefon]").val(),
					fax:$("input[name=fax]").val(),
					email:$("input[name=email]").val(),
					nachricht:$("#nachricht").val()
				}, function(status){
					if (status == 1) {
						$("form")[0].reset();
						$("#contact_success").show("slow");
						$("#loader").hide("fast");
					} else {
						alert("Sendmail Error!\n\nPlease contact us via info@polarwind-expeditions.com");
						$("#loader").hide("fast");
					}
				});
			}
		})
		$("#loader").hide("fast");
	});
	
	$("#contact_success").hide();
});