var processamento=0;
$(document).ready(function() 
{

		$("#bt_candidata").click(function()
		{
			if(processamento==1) return false;
		
			processamento = 1;
			$.post("http://"+$website_patch+"/processa.php?w=candidata",
			{
				nome:$('#nome').val(),
				morada:$('#morada').val(),
				cpostal:$('#cpostal').val(),
				localidade:$('#localidade').val(),
				telefone:$('#telefone').val(),
				telemovel:$('#telemovel').val(),
				email:$('#email').val()
			},
			function(data)
			{
				if(data == "ok")
				{
					$('#bt_candidata').fadeOut(500, function()
					{ 
						$(".form_msg").text("Candidatura enviada com sucesso").fadeIn(500);
					});
				}
				else
				{
					$(".form_msg").fadeOut(500, function()
					{ 
						$(".form_msg").text(data).fadeIn(500);
					});
				}
				processamento=0;
			});
			return false;
		});

	
	
});
