<!-- Begin
	tempo = 50;
	chars = 10;
	texto = "Aprender a Conduzir - www.aprenderaconduzir.com";
	wtexto = new Array(33);
	wtexto[0] = texto;
	blnk = " ";
	for (i = 1; i < 32; i++) {
		b = blnk.substring(0, i);
		wtexto[i] = "";
		for (j = 0; j < texto.length; j++) wtexto[i] = wtexto[i] + texto.charAt(j) + b;
	}
	function animastatus() {
		if (chars > -1) str = wtexto[chars]; 
		else str = wtexto[0];
		if (chars-- < -40) chars = 31;
		window.status = str;
		clearTimeout(tempo);
		tempo = setTimeout("animastatus()", 60);
	}
	animastatus();
// End -->