// JavaScript Document
// Array que indica os destinos
var destino = new Array;
destino[0] = "FERIADOS EM FLORIAN&Oacute;POLIS"; /* CVC */
destino[1] = "FERIADOS EM FORTALEZA"; /* CVC */
destino[2] = "FERIADOS EM MACEI&Oacute;"; /* CVC */
destino[3] = "FERIADOS EM PORTO DE GALINHAS"; /* CVC */
destino[4] = "FERIADOS NO RIO DE JANEIRO"; /* Intravel */
destino[5] = "FERIADOS EM SALVADOR"; /* CVC */
destino[6] = "FERIADOS NA SERRA GA&Uacute;CHA"; /* Intravel */

// Array que indica os valores mínimos de cada pacote
var valor = new Array ("1.049,00", "1.229,00", "1.035,00", "1.148,00", "1.109,00", "1.050,00", "1.184,00");

// Array que indica a foto de cada pacote
var src = new Array;
src[0] = "pictures/pacotes_nacionais/278x112_florianopolis01.jpg";
src[1] = "pictures/pacotes_nacionais/278x112_fortaleza01.jpg";
src[2] = "pictures/pacotes_nacionais/278x112_maceio01.jpg";
src[3] = "pictures/pacotes_nacionais/278x112_portodegalinhas03.jpg";
src[4] = "pictures/pacotes_nacionais/278x112_riodejaneiro01.jpg";
src[5] = "pictures/pacotes_nacionais/278x112_salvador01.jpg";
src[6] = "pictures/pacotes_nacionais/278x112_serragaucha01.jpg";

// Array que indica os links das páginas
var url = new Array;
url[0] = "http://www.oficinadeeventoseturismo.com.br/pacotesnacionais-sul-florianopolis-corpuschristi.html";
url[1] = "http://www.oficinadeeventoseturismo.com.br/pacotesnacionais-nordeste-fortaleza-corpuschristi.html";
url[2] = "http://www.oficinadeeventoseturismo.com.br/pacotesnacionais-nordeste-maceio-corpuschristi.html";
url[3] = "http://www.oficinadeeventoseturismo.com.br/pacotesnacionais-nordeste-portodegalinhas-corpuschristi.html";
url[4] = "http://www.oficinadeeventoseturismo.com.br/pacotesnacionais-sudeste-riodejaneiro-corpuschristi.html";
url[5] = "http://www.oficinadeeventoseturismo.com.br/pacotesnacionais-nordeste-salvador-corpuschristi.html";
url[6] = "http://www.oficinadeeventoseturismo.com.br/pacotesnacionais-sul-serragaucha-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 NACIONAIS + " + destino[numero_redondo] + "\"><img alt=\"PACOTES TUR&Iacute;STICOS NACIONAIS + " + 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 R$ " + valor[numero_redondo] + "</b></a>");
}
WritePromo();