$(document).ready(function() {   
	$('#btn-cadastrar').live('click',function(){
		$('input:hidden#act').val('add');
		$.post('_inc/_newsletter_act.php', $('form#newsletter_add').formSerialize(), function(data) {
			if (data == 'enviado') { $('div#newsletter').load('_inc/_newsletter_form.php?r=' + Math.random()); }
			if (data == 'erros') { $('div#newsletter').load('_inc/_newsletter_form.php?r=' + Math.random()); }
		});
	});
	
	$('#btn-remover').live('click',function(){
		$('input:hidden#act').val('remove');
		$.post('_inc/_newsletter_act.php', $('form#newsletter_add').formSerialize(), function(data) {
			if (data == 'enviado') { $('div#newsletter').load('_inc/_newsletter_form.php?r=' + Math.random()); }
			if (data == 'erros') { $('div#newsletter').load('_inc/_newsletter_form.php?r=' + Math.random()); }
		});
	});	
});
