// JavaScript Document

// (C) 2003 by CodeLifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

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

var Picture = new Array(); 
var Caption = new Array();
var showHot = false;    


Picture[1]  = 'images/02_bunker.jpg';
Picture[2]  = 'images/03_bunker.jpg';
Picture[3]  = 'images/04_bunker.jpg';
Picture[4]  = 'images/05_bunker.jpg';
Picture[5]  = 'images/06_bunker.jpg';
Picture[6]  = 'images/07_bunker.jpg';
Picture[7]  = 'images/08_bunker.jpg';
Picture[8]  = 'images/09_bunker.jpg';
Picture[9]  = 'images/10_bunker.jpg';
Picture[10]  = 'images/11_bunker.jpg';
Picture[11]  = 'images/12_bunker.jpg';
Picture[12]  = 'images/13_bunker.jpg';
Picture[13]  = 'images/14_bunker.jpg';
Picture[14]  = 'images/15_bunker.jpg';
Picture[15]  = 'images/16_bunker.jpg';
Picture[16]  = 'images/17_bunker.jpg';
Picture[17]  = 'images/18_bunker.jpg';
Picture[18]  = 'images/19_bunker.jpg';

Caption[1] = "2/18";
Caption[2] = "3/18";
Caption[3] = "4/18";
Caption[4] = "5/18";
Caption[5] = "6/18";
Caption[6] = "7/18";
Caption[7] = "8/18";
Caption[8] = "9/18";
Caption[9] = "10/18";
Caption[10] = "11/18";
Caption[11] = "12/18";
Caption[12] = "13/18";
Caption[13] = "14/18";
Caption[14] = "14/18";
Caption[15] = "15/18";
Caption[16] = "16/18";
Caption[17] = "17/18";
Caption[18] = "18/18";
Caption[19] = "19/18";


// =====================================
// Do not edit anything below this line!
// =====================================

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