$(function() {
  $('.error').hide();
  $(".button").click(function() {
		// validate and process form
		// first hide any error messages
    
          var secreto = $("input#secreto").val();
	    //alert(email);
	    //var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
		if (secreto == "" || secreto == "Escribe tu secreto es anonimo") {
      $("label#secreto_error").show();
      $("input#secreto").focus();
      return false;
    }
    
    
		
		
		var dataString = '&secreto=' + secreto;
		//alert (dataString);return false;
		
		$.ajax({
      type: "POST",
      url: "bin/send.php",
      data: dataString,
      success: function() {
        $('#contact_form').html("<div id='message'></div>");
        $('#message').html("<h2>&nbsp;</h2>")
        
        .hide()
        .fadeIn(1500, function() {
          $('#message').append("<p style='font-size:25px; float:left;'>Gracias, por compartir tu secreto.</p>");
        });
      }
     });
    return false;
	});
});
