function paginacao(pag)
{
	var rand = Math.ceil( Math.random() * 100000);

	$.post('ajax/principal/list_post.php', {pagina: pag, rand: rand},
		function(resposta)
		{
			$('#conteudo').html(resposta);
		}
	);
}

