/**
 * author: Ciro Feitosa - http://cirofeitosa.com
 * 2009/oct
 */

$(document).ready(function()
{
	/**
	 * submit comment form via ajax
	 */
	$('.comment-frm').submit(function()
	{
		$('.comment-success').fadeOut('fast');
		if ($('#comment_name').val() == '' ||
			$('#comment_email').val() == '' ||
			$('#comment_comment').val() == '')
		{
			if ($('.comment-frm-pt')[0])
				alert('Seu e-mail não será publicado, mas serve no caso de precisar te responder. Por favor, preencha os campos: Nome, E-mail e Comentário.');
			else
				alert('Your email will not be published, but just in case if I need to answer you. Please, fill the fields: Name, E-mail and Comment.');
		}
		else
		{
			$('.comment-send').attr('disabled', true);
			$('.comment-sending').fadeIn('fast');
			$.post('/comment', { url: window.location.href, post: $('#comment_post_id').val(), name: $('#comment_name').val(), email: $('#comment_email').val(), site: $('#comment_site').val(), comment: $('#comment_comment').val() }, function(data)
			{
				$('.comment-sending').fadeOut('fast', function()
				{
					$('.comment-send').attr('disabled', false);
					$('.comment-success').fadeIn('fast');
					$('.comment-field').val('');
				});
			});
		}
		return false;
	});
});