	$("#list_clientes > li").each(function(){
		var index = $("#list_clientes > li").index(this) + 1;
		//alert(index);
		if (index % 6 == 0)
		{
			$(this).hide();
			$(this).after('<br clear="all"/><br clear="all"/>');
		}
	});
	
	$("#list_clientes_nome > li").each(function(){
		var index = $("#list_clientes_nome > li").index(this) + 1;
		//alert(index);
		if (index <= 9)
		{
			$(this).hide();
		}
	});

