// JavaScript Document
// Array que indica os destinos
var destino = new Array;
destino[0] = "FERIADOS EM BUENOS AIRES, ARGENTINA"; // ADV Operadora
destino[1] = "FERIADOS EM ARUBA, CARIBE"; // ADV Operadora
destino[2] = "FERIADOS EM ORLANDO, DISNEY"; // GSA Tours
destino[3] = "FERIADOS EM CANCUN, M&Eacute;XICO";// ADV Operadora

// Array que indica os valores mínimos de cada pacote
var valor = new Array ("658,00", "2.038,00", "1.569,00", "1.937,00");

// Array que indica a foto de cada pacote
var src = new Array;
src[0] = "pictures/pacotes_internacionais/278x112_argentina01.jpg";
src[1] = "pictures/pacotes_internacionais/278x112_aruba01.jpg";
src[2] = "pictures/pacotes_internacionais/278x112_disney02.jpg";
src[3] = "pictures/pacotes_internacionais/278x112_cancun01.jpg";

// Array que indica os links das páginas
var url = new Array;
url[0] = "http://www.oficinadeeventoseturismo.com.br/pacotesinternacionais-buenosaires-corpuschristi.html";
url[1] = "http://www.oficinadeeventoseturismo.com.br/pacotesinternacionais-aruba-corpuschristi.html";
url[2] = "http://www.oficinadeeventoseturismo.com.br/pacotesinternacionais-orlando-corpuschristi.html";
url[3] = "http://www.oficinadeeventoseturismo.com.br/pacotesinternacionais-cancun-corpuschristi.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 ("<a href=\"" + url[numero_redondo] + "\" title=\"PACOTES TUR&Iacute;STICOS INTERNACIONAIS + " + destino[numero_redondo] + "\"><img alt=\"PACOTES TUR&Iacute;STICOS INTERNACIONAIS + " + destino[numero_redondo] + "\" border=\"0\" src=\"" + src[numero_redondo] + "\" width=\"278\" height=\"112\" /><br /><br />");
  document.write ("<b class=\"azul_c06\">" + destino[numero_redondo] + "<br />Pacotes Tur&iacute;sticos, a partir de US$ " + valor[numero_redondo] + "</b></a>");
}
WritePromo();