
$(document).ready(function(){
	
	
	var id_atual = $('#id_atual').val();
	
	$("#carregando").hide();
	
	
	$('#load_noticias').load('load_noticias.php',{id_atual_post:id_atual});
	
	
	$('#pagina_noticias #paginacao ul li a').click(function(){
					
		var pg = this.rel;
		
		$('#load_noticias').load('load_noticias.php',{pg_post:pg, id_atual_post:id_atual});
	
		
		$("#carregando").ajaxStart(function(){
			
			$(this).fadeIn('slow');
		
		})
		$("#carregando").ajaxStop(function(){
		
			$(this).fadeOut('slow');
		
		})
	
		return false;
		
	})
	
	
	

	
})

