//script geral
$(document).ready(function() {
//------------------------------------------------------
	//ler proximos lançamentos
	$.post("ajax/ajax.php",{parametro:"lancamentos"},
	   function(resposta){
		 
		 $('.lancamentos ').html(resposta);
		 
		 
	   });
	   
//------------------------------------------------------
});	





