
// (C) 2002 www.CodeLifter.com
// http://www.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 = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // 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]  = 'imagens/IMG_01.jpg';
Picture[2]  = 'imagens/IMG_02.jpg';
Picture[3]  = 'imagens/IMG_03.jpg';
Picture[4]  = 'imagens/IMG_04.jpg';
Picture[5]  = 'imagens/IMG_05.jpg';
Picture[6]  = 'imagens/IMG_06.jpg';
Picture[7]  = 'imagens/IMG_07.jpg';
Picture[8]  = 'imagens/IMG_08.jpg';
Picture[9]  = 'imagens/IMG_09.jpg';
Picture[10] = 'imagens/IMG_10.jpg';
Picture[11] = 'imagens/IMG_11.jpg';
Picture[12] = 'imagens/IMG_12.jpg';
Picture[13] = 'imagens/IMG_13.jpg';
Picture[14] = 'imagens/IMG_14.jpg';
Picture[15] = 'imagens/IMG_15.jpg';
Picture[16] = 'imagens/IMG_16.jpg';
Picture[17] = 'imagens/IMG_17.jpg';
Picture[18] = 'imagens/IMG_18.jpg';
Picture[19] = 'imagens/IMG_19.jpg';
Picture[20] = 'imagens/IMG_20.jpg';
Picture[21] = 'imagens/IMG_21.jpg';
Picture[22] = 'imagens/IMG_22.jpg';
Picture[23] = 'imagens/IMG_23.jpg';
Picture[24] = 'imagens/IMG_24.jpg';
Picture[25] = 'imagens/IMG_25.jpg';
Picture[26] = 'imagens/IMG_26.jpg';
Picture[27] = 'imagens/IMG_27.jpg';
Picture[28] = 'imagens/IMG_28.jpg';
Picture[29] = 'imagens/IMG_29.jpg';
Picture[30] = 'imagens/IMG_30.jpg';
Picture[31] = 'imagens/IMG_31.jpg';
Picture[32] = 'imagens/IMG_32.jpg';
Picture[33] = 'imagens/IMG_33.jpg';
Picture[34] = 'imagens/IMG_34.jpg';
Picture[35] = 'imagens/IMG_35.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]  = "";
Caption[2]  = "";
Caption[3]  = "";
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] = "";
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] = "";
Caption[35] = "";


// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
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 runSlideShow(){
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();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

