
function nextDepoimento() {
	$.post(url_dep, function(data) {
		//$('#ajaxDep').fadeOut();
		$('#ajaxDep').html(data);
		//$('#ajaxDep').fadeIn('slow');
	});
}

$(function(){
	window.setInterval('nextDepoimento()', 8000);	
});