$j(function() { 
	$j.tooltip();
	if($j('#lista')!= ""){
			setTimeout(function() {	abrir_banner(); }, 1000);
	}

});

function fechar_banner() {
	$j('#lista').hide();
}
function abrir_banner(){
	$j('#lista').show();
}

var Boleto={
	
	validar : function(form){
		if($Form.validar(form) != false){
			Boleto.cadastrar(form);
		}
			return false;	
	},
	
	cadastrar:function(form){
		$j.ajax({
			url: 'boleto_gerar.php?cadastrar', 
			type: 'post', data: $j(form).serialize(),
			success:function(response) {
				location='boleto_gerar.php?cadastrado='+response;
			}
		});	
	}
}
