// (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/land/1.jpg"
Picture[2]="photos/mexico/land/Agua-Verde-Bucht.jpg"
Picture[3]="photos/mexico/land/Tzararacua-Wasserfall.jpg"
Picture[4]="photos/mexico/land/huatulco-strand.jpg"
Picture[5]="photos/mexico/land/5.jpg"
Picture[6]="photos/mexico/land/6.jpg"
Picture[7]="photos/mexico/land/30.jpg"
Picture[8]="photos/mexico/land/8.jpg"
Picture[9]="photos/mexico/land/9.jpg"
Picture[10]="photos/mexico/land/Playa-de-Conejos.jpg"
Picture[11]="photos/mexico/land/11.jpg"
Picture[12]="photos/mexico/land/12.jpg"
Picture[13]="photos/mexico/land/13.jpg"
Picture[14]="photos/mexico/land/14.jpg"
Picture[15]="photos/mexico/land/15.jpg"
Picture[16]="photos/mexico/land/16.jpg"
Picture[17]="photos/mexico/land/17.jpg"
Picture[18]="photos/mexico/land/18.jpg"
Picture[19]="photos/mexico/land/10.jpg"
Picture[20]="photos/mexico/land/20.jpg"
Picture[21]="photos/mexico/land/21.jpg"
Picture[22]="photos/mexico/land/22.jpg"
Picture[23]="photos/mexico/land/23.jpg"
Picture[24]="photos/mexico/land/25.jpg"
Picture[25]="photos/mexico/land/26.jpg"
Picture[26]="photos/mexico/land/27.jpg"
Picture[27]="photos/mexico/land/28.jpg"
Picture[28]="photos/mexico/land/29.jpg"
Picture[29]="photos/mexico/land/7.jpg"
Picture[30]="photos/mexico/land/31.jpg"
Picture[31]="photos/mexico/land/32.jpg"
Picture[32]="photos/mexico/land/33.jpg"

Caption[1]  = "Lacandona Regenwald in Chiapas";
Caption[2]  = "Agua Verde auf der Baja California Sur";
Caption[3]  = "Tzararacua Wasserfall bei Pátzcuaro";
Caption[4]  = "Einer der vielen Strände der Bahías de Huatulco";
Caption[5]  = "Sumidero Canyon in Chiapas";
Caption[6]  = "Misol-Ha bei Palenque";
Caption[7]  = "Tulúm";
Caption[8]  = "Basaseachi Wasserfall";
Caption[9]  = "Barranca del Cobre";
Caption[10]  = "Playa de Conejos bei Huatulco";
Caption[11]  = "Kratersee bei Guanajuato";
Caption[12]  = "Nationalpark El Chico nicht weit von Mexiko City";
Caption[13]  = "Strand von Puerto Vallarta";
Caption[14]  = "Itzaccíhuatl";
Caption[15]  = "Nevado de Toluca";
Caption[16]  = "Popocatépetl";
Caption[17]  = "Hierve el Agua bei Oaxaca";
Caption[18]  = "Playa Carizalilla bei Puerto Escondido";
Caption[19]  = "Landschaft bei Creel";
Caption[20]  = "Playa Las Animas bei Puerto Vallarta";
Caption[21]  = "auf dem Weg nach Real de Catorce";
Caption[22]  = "Sonnenuntergang in Mázatlan";
Caption[23]  = "Blick vom Cofre de Perote zum Pico de Orizaba";
Caption[24]  = "Las Palmas Reef vor Cozumel";
Caption[25]  = "Isla Holbox";
Caption[26]  = "Isla Mujeres";
Caption[27]  = "Laguna Bacalar bei Chetumal";
Caption[28]  = "Paamul an der Riviera Maya";
Caption[29]  = "Agua Azul bei Palenque";
Caption[30]  = "Cenote Dzitnup bei Valladolid";
Caption[31]  = "Xcacel an der Riviera Maya";
Caption[32]  = "Sierra de Organos bei Zacatecas";

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();
}}
