// JavaScript Document
// Array que indica os navios
var destino = new Array;
destino[0] = "SKI EM ASPEN - 08 DIAS";// SkiBrasil
destino[1] = "SKI EM VAIL - 08 DIAS";// SkiBrasil
destino[2] = "BANFF &amp; LAKE LOUISE";// Maktour
destino[3] = "WHISTLER";// SkiBrasil

// Array que indica os textos
var texto = new Array;
texto[0] = "Temporada de ski em Aspen, nos Estados Unidos";
texto[1] = "Temporada de ski em Vail, 08 dias esquiando";
texto[2] = "Temporada de ski em Banff, 08 dias no Canad&aacute;";
texto[3] = "Temporada de ski em Whistler, 08 dias no Canad&aacute;";

// Array que indica os valores mínimos de cada pacote
var valor = new Array ("2.870,00", "3.678,00", "1.140,00", "2.477,00");

// Array que indica a foto de cada pacote
var src = new Array;
src[0] = "pictures/pacotes_internacionais/100x80_aspen03.jpg";
src[1] = "pictures/pacotes_internacionais/100x80_vail01.jpg";
src[2] = "pictures/pacotes_internacionais/100x80-banff-lakelouise01.jpg";
src[3] = "pictures/pacotes_internacionais/100x80-whistler01.jpg";

// Array que indica os links das páginas
var url = new Array;
url[0] = "http://www.oficinadeeventoseturismo.com.br/pacotes-turisticos-ski-usa-aspen.html";
url[1] = "http://www.oficinadeeventoseturismo.com.br/pacotes-turisticos-ski-usa-vail.html";
url[2] = "http://www.oficinadeeventoseturismo.com.br/pacotes-turisticos-ski-can-banff.html";
url[3] = "http://www.oficinadeeventoseturismo.com.br/pacotes-turisticos-ski-can-whistler.html";

var numero_randomico = Math.random() * (destino.length - 1 && src.length - 1 && valor.length - 1 && url.length - 1);
var numero_redondo = Math.round(numero_randomico);

function WritePromo(){
  document.write ("<td height=\"83\" valign=\"middle\" width=\"100\" style=\"padding-left:0px;\"><a href=\"" + url[numero_redondo] + "\" title=\"TEMPORADA DE SKI 2011/2012 + " + destino[numero_redondo] + "\"><img alt=\"TEMPORADA DE SKI 2010 + " + destino[numero_redondo] + "\" src=\"" + src[numero_redondo] + "\" border=\"0\" width=\"100\" height=\"80\" /></a></td>");
  document.write ("<td valign=\"middle\"><a href=\"" + url[numero_redondo] + "\" title=\"TEMPORADA DE SKI 2011/2012 + " + destino[numero_redondo] + "\"><b class=\"azul_l07\">" + destino[numero_redondo] + "</b><br /><span class=\"azul_l06\">" + texto[numero_redondo] + "<br /><br /><b>A partir de US$ " + valor[numero_redondo] + "</b></span></a></td>");
}
WritePromo();
