$(function(){
      $("#carregando").hide();
         $('ul#menu a, a.ajax_links').livequery('click', function(event) { 
            content = "html/"+$(this).attr('href')
            $("#carregando").ajaxStart(function(){
               $(this).show()
            })
            $("#carregando").ajaxStop(function(){
               $(this).hide()
            })
            $("#content").load(content)
            return false
         })
         
})









