$(document).ready(function(){

	$('#rLand').sSelect({defaultText: ""});

	//$("#btn-register").click(function(){$("#customer_info").submit();});

	//------reg form

	var options = {
		beforeSubmit:  function() {

			if(!$("#customer_info").valid()) return false;
			
			show_popup("popup_update");
			$("#popup_update .ttl").html("Daten werden gesendet.");
			$("#popup_update .txt").html("Bitte warten...");
			return true;

		},
		success:  register_ok,
		error:      function(XMLHttpRequest, textStatus, errorThrown) { alert("Error processing the request")},
		url: prepath+'register/?mode=json_add_customer',
		type:      "post",
		dataType:  "json"
	};


	$("#customer_info").ajaxForm(options).validate({
		

		rules: {
			rAnrede: "required",
			rVorname: "required",
			rName: "required",
			rStrasse: "required",
			rPlz: "required",
			rOrt: "required",
			rLand: "required",
			rTelefon: "required",
			Email : {required: true,  email: true}
			
		}
	});

});


function register_ok(data)
{
	if(data["error"])
	{

		$("#popup_update .ttl").html("Fehler!");
		$("#popup_update .txt").html(data["error"]);

		return;
	}
	document.location = "/profile/";
}

