// (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(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'le-phaux/4301.jpg';
Picture[2]  = 'le-phaux/4217.jpg';
Picture[3]  = 'le-phaux/4222.jpg';
Picture[4]  = 'le-phaux/4223.jpg';
Picture[5]  = 'le-phaux/4224.jpg';
Picture[6]  = 'le-phaux/4227.jpg';
Picture[7]  = 'le-phaux/4229.jpg';
Picture[8]  = 'le-phaux/4233.jpg';
Picture[9]  = 'le-phaux/4237.jpg';
Picture[10]  = 'le-phaux/4238.jpg';
Picture[11]  = 'le-phaux/4239.jpg';
Picture[12]  = 'le-phaux/4257.jpg';
Picture[13]  = 'le-phaux/4259.jpg';
Picture[14]  = 'le-phaux/4268.jpg';
Picture[15]  = 'le-phaux/4278.jpg';
Picture[16]  = 'le-phaux/4297.jpg';
Picture[17]  = 'le-phaux/4299.jpg';
Picture[18]  = 'le-phaux/4312.jpg';
Picture[19]  = 'le-phaux/4313.jpg';
Picture[20]  = 'le-phaux/4317.jpg';
Picture[21]  = 'le-phaux/4321.jpg';
Picture[22]  = 'le-phaux/4326.jpg';
Picture[23]  = 'le-phaux/4327.jpg';
Picture[24]  = 'le-phaux/4328.jpg';
Picture[25]  = 'le-phaux/4331.jpg';
Picture[26]  = 'le-phaux/4334.jpg';
Picture[27]  = 'le-phaux/4336.jpg';
Picture[28]  = 'le-phaux/4341.jpg';
Picture[29]  = 'le-phaux/4343.jpg';
Picture[30]  = 'le-phaux/4358.jpg';
Picture[31]  = 'le-phaux/4362.jpg';
Picture[32]  = 'le-phaux/4363.jpg';
Picture[33]  = 'le-phaux/4368.jpg';
Picture[34]  = 'le-phaux/zwart.jpg';



// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "Le Phaux";
Caption[2]  = "";
Caption[3]  = "Cissy van der Wel";
Caption[4]  = "";
Caption[5]  = "";
Caption[6]  = "";
Caption[7]  = "";
Caption[8]  = "";
Caption[9]  = "";
Caption[10] = "";
Caption[11] = "";
Caption[12] = "";
Caption[13] = "";
Caption[14] = "";
Caption[15] = "";
Caption[16] = "";
Caption[17] = "";
Caption[18] = "Gerrit van Meurs";
Caption[19] = "";
Caption[20] = "";
Caption[21] = ""; 
Caption[22] = "";
Caption[23] = "";
Caption[24] = "";
Caption[25] = "";
Caption[26] = "";
Caption[27] = "";
Caption[28] = "";
Caption[29] = "";
Caption[30] = "";
Caption[31] = "";
Caption[32] = "";
Caption[33] = "";
Caption[34] = "EINDE";


// =====================================
// 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=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();
}}

