/*
 * autor: Ciro Feitosa - http://cirofeitosa.com.br
 * maio/2009
 */

function add_fa(fid)
{
	$.post('/ajax/fa', { id: $('#pid').text() }, function(data)
	{
		$('#fa-botao').fadeOut(function()
		{
			$('#fa-botao-ok').fadeIn('fast');
		});
	});
	return false;
}

