$(document).ready(function(e, ui){
	$("#submitbtn").click(function(){
		$.ajax({
			type : "POST",
			url  : "/callbacks/mailinglist/ajax",
			data : "action=submit&lng="+$(this).attr("lng")+"&email="+escape($("#email_form_email").val())+"&name="+escape($("#email_form_name").val())+"&country="+$("#email_form_country").val(),
			dataType : "json",
			async : true,
			success: function(json) {
				if(json.succes)
				{
					$("#email_form").html("<strong>"+json.message+"</strong>");
				}
				else if(json.error)
				{
					alert(json.error);
				}
			},
			error:function(error){
				alert(json.error);
			}
		});
	});
});
