var tex = new Array(3), i = 0, t = 18000;
$('document').ready(function() {
	$('.info').hide()
	$('#sp').show()
	tex[0] = $('#sp .texto').html();
	tex[1] = $('#pt .texto').html();
	tex[2] = $('#en .texto').html();
	setTimeout('change()', t);
});

function change() {
	i += 1
	$('#sp .texto').fadeOut("slow", function() {
		$(this).html(tex[i % 3]);
		$(this).fadeIn("slow");
	});
	setTimeout('change()', t);
}