// JavaScript Document
// Array que indica os navios
var destino = new Array;
destino[0] = "BARILOCHE - 08 DIAS";// SkiBrasil
destino[1] = "CHILL&Aacute;N - 08 DIAS";// SkiBrasil
destino[2] = "LAS LE&Ntilde;AS";// Maktour
destino[3] = "PORTILLO";// SkiBrasil

// Array que indica os textos
var texto = new Array;
texto[0] = "Temporada de ski 2010 em Bariloche, na Argentina";
texto[1] = "Temporada de ski em Chill&aacute;n, 08 dias esquiando no Chile";
texto[2] = "Temporada de ski 2010 em Las Le&ntilde;as, na Argentina";
texto[3] = "Temporada de ski 2010 em Portillo, no Chile";

// Array que indica os valores mínimos de cada pacote
var valor = new Array ("1.343,00", "840,00", "1.350,00", "2.607,00");

// Array que indica a foto de cada pacote
var src = new Array;
src[0] = "pictures/pacotes_internacionais/100x80_bariloche01.jpg";
src[1] = "pictures/pacotes_internacionais/100x80_chillan01.jpg";
src[2] = "pictures/pacotes_internacionais/100x80_chapelco01.jpg";
src[3] = "pictures/pacotes_internacionais/100x80_vallenevado01.jpg";

// Array que indica os links das páginas
var url = new Array;
url[0] = "http://www.oficinadeeventoseturismo.com.br/pacotes_internacionais_argentina_bariloche.html";
url[1] = "http://www.oficinadeeventoseturismo.com.br/pacotes_internacionais_chile_chillan.html";
url[2] = "http://www.oficinadeeventoseturismo.com.br/pacotes_internacionais_argentina_laslenas.html";
url[3] = "http://www.oficinadeeventoseturismo.com.br/pacotes_internacionais_chile_portillo.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 2010 + " + 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 2010 + " + 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();