
// (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 SlideShowSpeed1 = 2500;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration1 = 3;

var Pict = 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!

Pict[1]  = 'java/1.jpg';
Pict[2]  = 'java/2.jpg';
Pict[3]  = 'java/3.jpg';
Pict[4]  = 'java/4.jpg';
Pict[5]  = 'java/5.jpg';
Pict[6]  = 'java/6.jpg';
Pict[7]  = 'java/7.jpg';
Pict[8]  = 'java/8.jpg';
Pict[9]  = 'java/9.jpg';
Pict[10]  = 'java/10.jpg';
Pict[11]  = 'java/11.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]  = "This is the first caption.";
//Caption[2]  = "This is the second caption.";
//Caption[3]  = "This is the third caption.";
//Caption[4]  = "This is the fourth caption.";
//Caption[5]  = "This is the fifth caption.";
//Caption[6]  = "This is the sixth caption.";
//Caption[7]  = "This is the seventh caption.";
//Caption[8]  = "This is the eighth caption.";
//Caption[9]  = "This is the ninth caption.";
//Caption[10] = "This is the tenth caption.";

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

var tss1;
var iss1;
var jss1 = 1;
var pss1 = Pict.length-1;

var preLoad1 = new Array();
for (iss1 = 1; iss1 < pss1+1; iss1++){
preLoad1[iss1] = new Image();
preLoad1[iss1].src = Pict[iss1];}

function runSlideShow1(){
if (document.all){
document.images.PictureBox1.style.filter="blendTrans(duration=2)";
document.images.PictureBox1.style.filter="blendTrans(duration=CrossFadeDuration1)";
document.images.PictureBox1.filters.blendTrans.Apply();}
document.images.PictureBox1.src = preLoad1[jss1].src;
if (document.all) document.images.PictureBox1.filters.blendTrans.Play();
jss1 = jss1 + 1;
if (jss1 > (pss1)) jss1=1;
tss1 = setTimeout('runSlideShow1()', SlideShowSpeed1);
}





