// (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 = 5000;

// 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]  = '/images/slideshow/john-conteh2.jpg';
Caption[1]  = 'John Conteh';

Picture[2]  = '/images/slideshow/Anelka.jpg';
Caption[2]  = 'Anelka';

Picture[3]  = '/images/slideshow/Burns.jpg';
Caption[3]  = 'Burns';

Picture[4]  = '/images/slideshow/Gooch.jpg';
Caption[4]  = 'Gooch';

Picture[5]  = '/images/slideshow/Greaves.jpg';
Caption[5]  = 'Greaves';

Picture[6]  = '/images/slideshow/Harris.jpg';
Caption[6]  = 'Harris';

Picture[7]  = '/images/slideshow/Irani.jpg';
Caption[7]  = 'Irani';

Picture[8]  = '/images/slideshow/JohnHStracey.jpg';
Caption[8]  = 'John H Stracey';

Picture[9]  = '/images/slideshow/Keegan.jpg';
Caption[9]  = 'Keegan';

Picture[10]  = '/images/slideshow/Law.jpg';
Caption[10]  = 'Law';

Picture[11]  = '/images/slideshow/alex-stepney.jpg';
Caption[11]  = 'Alex Stepney';

Picture[12]  = '/images/slideshow/bonetti.jpg';
Caption[12]  = 'bonetti';

Picture[13]  = '/images/slideshow/defoe.jpg';
Caption[13]  = 'defoe';

Picture[14]  = '/images/slideshow/duncanmckenziestewartmaster.jpg';
Caption[14]  = 'Duncan mcKenzie - Stewart Masters';

Picture[15]  = '/images/slideshow/Gascoinge.jpg';
Caption[15]  = 'Gascoinge';

Picture[16]  = '/images/slideshow/Jennings.jpg';
Caption[16]  = 'Jennings';

Picture[17]  = '/images/slideshow/Magri.jpg';
Caption[17]  = 'Magri';

Picture[18]  = '/images/slideshow/osgood.jpg';
Caption[18]  = 'osgood';

Picture[19]  = '/images/slideshow/pires.jpg';
Caption[19]  = 'pires';

Picture[20]  = '/images/slideshow/RickyVilla.jpg';
Caption[20]  = 'Ricky Villa';

Picture[21]  = '/images/slideshow/robin-smith.jpg';
Caption[21]  = 'Robin Smith';

Picture[22]  = '/images/slideshow/shearer.jpg';
Caption[22]  = 'Shearer';

Picture[23]  = '/images/slideshow/stevebull.jpg';
Caption[23]  = 'Steve Bull';

Picture[24]  = '/images/slideshow/Stiles.jpg';
Caption[24]  = 'Stiles';

Picture[25]  = '/images/slideshow/terry.jpg';
Caption[25]  = 'Terry';

Picture[26]  = '/images/slideshow/walsh2.jpg';
Caption[26]  = 'Walsh';

Picture[27]  = '/images/slideshow/Whieside.jpg';
Caption[27]  = 'Whieside';

// =====================================
// 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();
}
if (document.getElementById){
	document.getElementById("PictureBox").src = preLoad[jss].src;
	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);
}

