window.onload = initAll;var currImg = 0;var captionText = new Array(	"Flowers in the garden,<br /> Teres&#243;polis,<br /> Rio de Janeiro",	"Colonial Architecture,<br /> <a href='http://www.topdobrasil.com.br/fr/parati/'>Parati</a> (Costa Verde),<br /> Rio de Janeiro",	"Nordeste Coast,<br /> at Canguaretama,<br /> Rio Grande do Norte",	"Ponta Negra Beach,<br /> Natal,<br /> Rio Grande do Norte",	"Praia da Pipa,<br /> Southern Coast<br /> of Rio Grande do Norte",	"Avenida Presidente Vargas,<br /> Downtown Rio de Janeiro",	"Barra da Tijuca,<br /> modern quarter of Rio de Janeiro",	"Rua 24 Horas,<br /> Downtown Curitiba,<br /> Paraná",	"Ipê flowers,<br /> Praça XV de Novembre,<br /> Curitiba,<br /> Paraná",	"Little peasant house<br /> of Brazil <a href='http://nordeste.topdobrasil.com.br/'>Nordeste</a>")function initAll() {	document.getElementById("imgText").innerHTML = captionText[0];	document.getElementById("prevLink").onclick = processPrevious;	document.getElementById("nextLink").onclick = processNext;}function processPrevious() {	newSlide(-1);}function processNext() {	newSlide(1);}function newSlide(direction) {	var imgCt = captionText.length;	currImg = currImg + direction;	if (currImg < 0) {		currImg = imgCt-1;	}	if (currImg == imgCt) {		currImg = 0;	}	document.getElementById("slideshow").src = "http://www.brasildepot.com.br/basefotos/country/slidesbrasil" + currImg + ".jpg"	document.getElementById("imgText").innerHTML = captionText[currImg]}