

// #################
// Kontakt Formulare
// #################
$(function() {
	
    var validatorContact = $("#contactForm").validate({ 
		 rules: {

			check: "required",
			
		 	nachname1: {
				required: true,
		      	minlength: 3
			},
		 	vorname1: {
				required: true,
		      	minlength: 3
			},
		 	strasse1: {
				required: true,
		      	minlength: 3
			},
		 	plz1: {
				required: true,
		      	minlength: 5
			},
		 	ort1: {
				required: true,
		      	minlength: 3
			},
		 	land1: {
				required: true,
		      	minlength: 3
			},
		 	geb1: {
				required: true,
		      	minlength: 6
			},
			email1: { 
                required: true, 
               	email: true
                //remote: "emails.php" 
            }
 
		 },
		 
		 messages: {
			check: " ",
			nachname1: " ",
			vorname1: " ",
			strasse1: " ",
			plz1: " ",
			ort1: " ",
			land1: " ",
			geb1: " ",
			email1: " "
		
		},
        // the errorPlacement has to take the table layout into account 
		errorPlacement: function(error, element) { 
			//error.appendTo( element.parent() ); 
			error.appendTo( element.next() );
		}, 	
	
		submitHandler: function(form) {
				$(form).ajaxSubmit({
					target: "#theForm"
				});
				
				window.setTimeout("window.location.href = 'http://klubfoto.de/capsandiego/vielen-dank/'", 1000);

				//;
		},
		
        success: function(label) { 
            // set   as text for IE 
            label.html(" ").addClass("checked"); 
            
        } 


	 });

});
