$(window).load(function() {

	$('#send_comment').click(saveComment);


});

function saveComment()
{
	$.post('blog/save-comment', $(':input'), function(html) {

		pieces = html.split('@@@');
		
		if(pieces[0] == 1)
		{
			id = pieces[1];
			
			$('.num_globito').text(pieces[2]);
		
			$('#comment_list').append(pieces[3]);
			$('#lista_errores').text('');
			
			$('#comment'+id).hide().fadeIn(1000);
			
			$('#comentario_comentario').val("");
			$('#comentario_autor').val("");
			$('#comentario_email').val("");
			$('#comentario_web').val("");
		}
		else
		{		
			$('#lista_errores').html(pieces[1]);
		}
	
	});
}


