$(function() {
  $('.ajaxerror').hide();
  $('input.text-input').css({backgroundColor:"#000000"});
  $('input.text-input').focus(function(){
    $(this).css({backgroundColor:"#0c0c0c"});
  });
  $('input.text-input').blur(function(){
    $(this).css({backgroundColor:"#000000"});
  });

  $(".button").click(function() {
		// validate and process form
		// first hide any.ajaxerror messages
    $('.ajaxerror').hide();
		

		var email = $("input#email").val();
		if (email == "") {
      $("label#email_error").show();
      $("input#email").focus();
      return false;
    }
	
		
		var dataString = '&email=' + email ;
		//alert (dataString);return false;
		
		$.ajax({
      type: "POST",
      url: "news.php",
      data: dataString,
      success: function() {
        $('#contact_form').html("<div id='message'></div>");
        $('#message').html("<p class='orange'>Su email ha sido agregado exitosamente</p>")
        //.append("<p>We will be in touch soon.</p>")
        .hide()
        .fadeIn(1500, function() {
         //$('#message').append("<img id='checkmark' src='images/check.png' />");
        });
      }
     });
    return false;
	});
});


