function alterna_servicos()
{
		vet_imagens = new Array (
								"imagens/produtos/NEOWAVE.jpg", 
								"imagens/produtos/ILUX.jpg", 
								"imagens/produtos/LINKS_DEDICADOS.jpg", 
								"imagens/produtos/HOSPEDAGEM.jpg",
								"imagens/produtos/CO-LOCATION.jpg"
							);
		
		var cont = 0;
		var tempo = 1000;
			
		while(cont < 5)
		{
			tempo_img = cont*tempo*4;
			setTimeout ( "document.getElementById('produto_img').src=vet_imagens["+cont+"];", tempo_img );
			cont++;
		}
		tempo_img = tempo_img+4000;
		setTimeout("alterna_servicos()", tempo_img)
		
}
