$(function() {
  $('.error').hide();

  $(".button-form").click(function() {
    $('.error').hide();
		
	  var name = $("input#name").val();
		if (name == "") {
      $("label#name_error").show();
      $("input#name").focus();
      return false;
    }
		
		var dataString = 'name='+ name;
		//alert (dataString);return false;
		
		$.ajax({
      type: "POST",
      url: "bin/process.php",
      data: dataString,
      success: function() {
        $('#sign_form').html("<div id='message'></div>");
        $('#message').html("<p><em>" + name + "</em>,<br /> Tu nombre ya hace parte del libro que será entregado a Ban Ki-Moon y a los líderes del mundo en la Cumbre de las Naciones Unidas. <strong>Invita a tus amigos a unirse.</strong></p>")
        .hide()
        .fadeIn(500);
      }
     });
    return false;
	});
});
runOnLoad(function(){
  //$("input#name").select().focus();
});
