$(document).ready(function(){        		
		$("#fmail").focus(function() {
			if ($(this).val() == "O seu e-mail") {
				$(this).val("");
			}
		}).blur(function() {
			if ($(this).val() == "") {
				$(this).val("O seu e-mail");
			}
		});
	   
		$("#f1").click(function() {
			$.ajax({
  				type: "POST",
				url: "remote/n.php",
				data: "n="+$("#fmail").val(),
				success: function(msg){
				if (msg == "1") {
				   // $("#fmail").css("color","green");
				    $("#fmail").blur().val("Obrigado!");
				}
				else {
				    $("#fmail").css("color","red");
				}
			}
			});
		});		
    }); 
