$(document).ready(function(){
	$(':button').addClass('button_disabled').css("color", "#333333");
	$('.success').hide();
	var isvalid = false;
	var min = 1;
	var max = 140;
	var t = $("textarea");
	t.keyup(function(e){
		var currentChars = Number(max - $(this).val().length);
		$('p').text(currentChars);
		if(currentChars >= min - 1 && currentChars < max){
			$(':button').css('color', 'white');
			isvalid = true;
		}else{
			$(':button').css("color", "#333333");
			isvalid = false;
		}
	});
	$(":button").click(function(){
		if(isvalid){
			$(this).hide();
			$('p').text('controlando...espere').addClass('loading');
			$.ajax({
				type:'POST',
				dataType:'html',
				url:'index/open',
				data:'msg=' + t.val(),
				success:function(msg){
					if(msg == '1'){
						var t = $("textarea");
						t.text('');	
						$('p').removeClass('loading');	
						$('.zend_form').fadeOut("slow");
						$('p').fadeOut("slow");
						$('.success').show("slow");
					}else{
						$(":button").show();
						$('p').text('error, reintentar');	
						$('p').removeClass('loading');	
					}
				}	
			});
		}
	});
});
