// (C) 2003 by CodeLifter.com

var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

Picture[1]="photos/mexico/sehens/1.jpg"
Picture[2]="photos/mexico/sehens/2.jpg"
Picture[3]="photos/mexico/sehens/3.jpg"
Picture[4]="photos/mexico/sehens/4.jpg"
Picture[5]="photos/mexico/sehens/5.jpg"
Picture[6]="photos/mexico/sehens/6.jpg"
Picture[7]="photos/mexico/sehens/7.jpg"
Picture[8]="photos/mexico/sehens/8.jpg"
Picture[9]="photos/mexico/sehens/9.jpg"
Picture[10]="photos/mexico/sehens/10.jpg"
Picture[11]="photos/mexico/sehens/11.jpg"
Picture[12]="photos/mexico/sehens/12.jpg"
Picture[13]="photos/mexico/sehens/13.jpg"
Picture[14]="photos/mexico/sehens/14.jpg"
Picture[15]="photos/mexico/sehens/15.jpg"
Picture[16]="photos/mexico/sehens/16.jpg"
Picture[17]="photos/mexico/sehens/17.jpg"
Picture[18]="photos/mexico/sehens/18.jpg"
Picture[19]="photos/mexico/sehens/19.jpg"
Picture[20]="photos/mexico/sehens/20.jpg"
Picture[21]="photos/mexico/sehens/21.jpg"
Picture[22]="photos/mexico/sehens/22.jpg"
Picture[23]="photos/mexico/sehens/23.jpg"
Picture[24]="photos/mexico/sehens/24.jpg"
Picture[25]="photos/mexico/sehens/25.jpg"
Picture[26]="photos/mexico/sehens/26.jpg"
Picture[27]="photos/mexico/sehens/27.jpg"
Picture[28]="photos/mexico/sehens/28.jpg"
Picture[29]="photos/mexico/sehens/29.jpg"
Picture[30]="photos/mexico/sehens/30.jpg"
Picture[31]="photos/mexico/sehens/31.jpg"
Picture[32]="photos/mexico/sehens/32.jpg"
Picture[33]="photos/mexico/sehens/33.jpg"
Picture[34]="photos/mexico/sehens/34.jpg"
Picture[35]="photos/mexico/sehens/35.jpg"
Picture[36]="photos/mexico/sehens/36.jpg"
Picture[37]="photos/mexico/sehens/37.jpg"
Picture[38]="photos/mexico/sehens/38.jpg"
Picture[39]="photos/mexico/sehens/39.jpg"

Caption[1]  = "'El Palacio' in Palenque";
Caption[2]  = "Anthropologisches Museum in Mexico City";
Caption[3]  = "Palacio de Bellas Artes in Mexico City";
Caption[4]  = "Coyacan, Stadtviertel von Mexico City";
Caption[5]  = "Museum Frida Kahlo";
Caption[6]  = "Blick auf die Mondpyramide von Teotihuacán";
Caption[7]  = "Wale in der Lagune von San Ignacio";
Caption[8]  = "Fresko in Bonampak";
Caption[9]  = "Ostern in San Cristobal de las Casas";
Caption[10]  = "Yaxchilian im Regenwald von Chiapas";
Caption[11]  = "Museum in Chihuahua";
Caption[12]  = "Paquimé";
Caption[13]  = "Klippenspringer in Acapulco";
Caption[14]  = "Atlanten von Tula";
Caption[15]  = "Instituto Cultural de Cabañas in Guadalajara";
Caption[16]  = "Schmetterlingsschutzgebiet 'El Rosario' in Michoacán";
Caption[17]  = "versunkene Kirche in der Lava des Vulkan Paricutin";
Caption[18]  = "Ruinen von Mitla";
Caption[19]  = "Ruinen von Monte Alban";
Caption[20]  = "Webkunst aus Teotitlán del Valle";
Caption[21]  = "Kirche auf der Pyramide von Cholulá";
Caption[22]  = "Skulpturenpark 'Las Pozas'";
Caption[23]  = "Eine der Missionen von Querétaro";
Caption[24]  = "Hahnenkampfring in Real de Catorze";
Caption[25]  = "Freilichtmuseum 'La Venta' in Villahermosa";
Caption[26]  = "Nischenpyramide von El Tajín";
Caption[27]  = "La Fortaleza de San Juan de Ulúa in Veracruz";
Caption[28]  = "Ruinen von Calakmul";
Caption[29]  = "Ruinen von Chicanná";
Caption[30]  = "El Castillo in Chichén Itzá";
Caption[31]  = "Treppe zur großen Pyramide in Cobá";
Caption[32]  = "Cenote von Dzibilchaltún";
Caption[33]  = "Ruinen von Edzná";
Caption[34]  = "Ruinen von Ek Balám";
Caption[35]  = "Ruinen von Hormigüero";
Caption[36]  = "Ruinen von Kabah";
Caption[37]  = "Maske in Kohunlich";
Caption[38]  = "Pyramide des Zauberers in Uxmal";
Caption[39]  = "Ruinen von Xpujil";

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}
