// (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]  = 'images/slide/Image001.jpg';
Picture[2]  = 'images/slide/Image002.jpg';
Picture[3]  = 'images/slide/Image003.jpg';
Picture[4]  = 'images/slide/Image004.jpg';
Picture[5]  = 'images/slide/Image005.jpg';
Picture[6]  = 'images/slide/Image006.jpg';
Picture[7]  = 'images/slide/Image007.jpg';
Picture[8]  = 'images/slide/Image008.jpg';
Picture[9]  = 'images/slide/Image009.jpg';
Picture[10]  = 'images/slide/Image0010.jpg';
Picture[11]  = 'images/slide/Image0011.jpg';
Picture[12]  = 'images/slide/Image0012.jpg';
Picture[13]  = 'images/slide/Image0013.jpg';
Picture[14]  = 'images/slide/Image0014.jpg';
Picture[15]  = 'images/slide/Image0015.jpg';
Picture[16]  = 'images/slide/Image0016.jpg';
Picture[17]  = 'images/slide/Image0017.jpg';
Picture[18]  = 'images/slide/Image0018.jpg';
Picture[19]  = 'images/slide/Image0019.jpg';
Picture[20]  = 'images/slide/Image0020.jpg';
Picture[21]  = 'images/slide/Image0021.jpg';
Picture[22]  = 'images/slide/Image0022.jpg';
Picture[23]  = 'images/slide/Image0023.jpg';
Picture[24]  = 'images/slide/Image0024.jpg';
Picture[25]  = 'images/slide/Image0025.jpg';
Picture[26]  = 'images/slide/Image0026.jpg';
Picture[27]  = 'images/slide/Image0027.jpg';
Picture[28]  = 'images/slide/Image0028.jpg';
Picture[29]  = 'images/slide/Image0029.jpg';
Picture[30]  = 'images/slide/Image0030.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]  = "Ana Ivanovic 2002";
Caption[2]  = "Andrea Petkovic 2002";
Caption[3]  = "Andy Murray 2003";
Caption[4]  = "Andy Roddick 1999";
Caption[5]  = "Angelique Kerber 2002";
Caption[6]  = "A Pavlyuchenkova 2006";
Caption[7]  = "Caroline Wozniacki 2004";
Caption[8]  = "Donald Young 2001";
Caption[9]  = "Gilles Muller 2001";
Caption[10]  = "Janko Tipsarevic 2000";
Caption[11]  = "John Isner 2002";
Caption[12]  = "Jo Wilfried Tsonga 2003";
Caption[13]  = "Mardy Fish 1999";
Caption[14]  = "Maria Kirilenko 2002";
Caption[15]  = "Monica Niculescu 2003";
Caption[16]  = "Novak Djokovic 2002";
Caption[17]  = "Juan Monaco 2001";
Caption[18]  = "Sabine Lisicki 2004";
Caption[19]  = "Samantha Stosur 2000";
Caption[20]  = "Shuai Peng 2001";
Caption[21]  = "Svetlana Kuznetsova 2006";
Caption[22]  = "Vera Zvonareva 2001";
Caption[23]  = "Gael Monfils 2003";
Caption[24]  = "Jack Sock 2004";
Caption[25]  = "Jelena Jankovic 2000";
Caption[26]  = "Juan Martin DelPotro 2002";
Caption[27]  = "Maria Sharapova 2002";
Caption[28]  = "Melanie Oudin 2005";
Caption[29]  = "Ryan Harrison 2003";
Caption[30]  = "Vika Azarenka 2002";




 
// =====================================
// 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);
}
