// JavaScript Document
$(document).ready(function(){	
		$("#fmail").focus(function() {
			if ($(this).val() == "Escreva o seu email") {
				$(this).val("");
			}
		}).blur(function() {
			if ($(this).val() == "") {
				$(this).val("Escreva o seu email");
			}
		}).bind("keypress",function(event) {
			if (event.keyCode == '13') {
				$("#f1").trigger("click");
				return false;
			}
		});
	   	
		$("#f1").click(function() {
			$.ajax({
  				type: "POST",
				url: "remote/n.php",
				data: "n="+$("#fmail").val(),
				success: function(msg){
					if (msg == "1") {
					    $("#fmail").css("color","green").val("Obrigado!");
					}
					else {
					    $("#fmail").css("color","red").val("O e-mail incorrecto!");
					}
					//$("#fmail").animate({"color":"#000"},5000).val("Escreva o seu email");
				}
			});
		});	

	});
