$('document').ready(function() {
	$('#frm_addpost').submit(function() {
		if ($('#frm_addpost textarea').val().length < 2) {
			$('textarea').focus();
			//alert($('textarea').val());
			return false;	
		}
		
		//$('#frm_addpost textarea').addClass('deactive');
		//$('#frm_addpost textarea').css('visibility', 'hidden');
		$('#frm_addpost .edicion').fadeOut();
		//$('#frm_addpost #preload').fadeIn();
		
		//alert($('#frm_addpost').attr('action'));
		//return;
		
		$.ajax({
			type: "POST",
			url: $('#frm_addpost').attr('action'),
			data: $('#frm_addpost').serialize(),
			success: function(msg){
				//alert(msg);
				//$('#frm_addpost #preload').fadeOut();
				//$('#frm_addpost textarea').fadeIn();
				//$('#frm_addpost textarea').css('visibility', 'visible');
				$('#frm_addpost .edicion').fadeIn();
				if ($(msg).find('error').length > 0) {
					alert($(msg).find('error').text());
					return;
				}
				$('#frm_addpost textarea').val('');
				$('#frm_addpost textarea').focus();
				$('#mbores').prepend($(msg).find('data').html());
				$('#flash_post_pendiente').slideDown('slow');
				$('.mbore_item').slideDown("slow");
				if ($('#prefijo').val() == '1') {
					$('#prefijo').val('2');
				}	
				else {
					$('#prefijo').val('1');	
				}
			}
		});
		
		return false;							   
	});
});