$(document).ready(function()
{
    carregaDados("apresentacao.php","");
});

function carregaDados(url,data)
{
	 $("#carregando").ajaxStart(function(){
		$(this).show();								
	 });
	 $("#carregando").ajaxStop(function(){
		$(this).hide();								
	 });
	 $.ajax({
   			type: "GET",
   			url: url,
   			data: data,
   			success: function(result){
				$("#txt_content").html(result);
   			}
	 });
}
