/**
 * autor: Ciro Feitosa - http://cirofeitosa.com.br
 * julho/2008
 */
var voto;
registra = function(id, v)
{
	if (v == '-1')
		voto = -1;
	else
		voto = 1;

	$('#gostou_botoes').fadeOut('fast', function()
	{
		$('#gostou_texto').text('Registrando opinião...').fadeIn('normal', function()
		{
			$.post('/ajax-voto.php?id='+id+'&voto='+voto, function (data)
			{
				$('#gostou_texto').fadeOut('fast', function()
				{
					$('#gostou_texto').text('Sua opinião foi registrada com sucesso!').fadeIn();
				});
			});
		});
	});
}
