
// (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]  = 'images/slideImg0.jpg';
Picture[2]  = 'images/slideImg6.jpg';
Picture[3]  = 'images/slideImg2.jpg';
Picture[4]  = 'images/slideImg3.jpg';
Picture[5]  = 'images/slideImg8.jpg';
Picture[6]  = 'images/slideImg9.jpg';
Picture[7]  = 'images/slideImg10.jpg';
Picture[8]  = 'images/slideImg7.jpg';
Picture[9]  = 'images/slideImg11.jpg';
Picture[10]  = 'images/slideImg12.jpg';
Picture[11]  = 'images/slideImg5.jpg';
Picture[12]  = 'images/slideImg13.jpg';
Picture[13]  = 'images/slideImg4.jpg';
Picture[14]  = 'images/slideImg1.jpg';
Picture[15]  = 'images/slideImg14.jpg';
Picture[16]  = 'images/slideImg15.jpg';
Picture[17]  = 'images/slideImg16.jpg';
Picture[18]  = 'images/slideImg17.jpg';
Picture[19]  = 'images/slideImg18.jpg';
Picture[20]  = 'images/slideImg19.jpg';
Picture[21]  = 'images/slideImg20.jpg';
Picture[22]  = 'images/slideImg21.jpg';
Picture[23]  = 'images/slideImg22.jpg';
Picture[24]  = 'images/slideImg23.jpg';
Picture[25]  = 'images/slideImg24.jpg';
Picture[26]  = 'images/slideImg25.jpg';
Picture[27]  = 'images/slideImg26.jpg';
Picture[28]  = 'images/slideImg27.jpg';
Picture[29]  = 'images/slideImg28.jpg';
Picture[30]  = 'images/slideImg29.jpg';
Picture[31]  = 'images/slideImg30.jpg';
Picture[32]  = 'images/slideImg31.jpg';
Picture[33]  = 'images/slideImg32.jpg';
Picture[34]  = 'images/slideImg33.jpg';
Picture[35]  = 'images/slideImg34.jpg';
Picture[36]  = 'images/slideImg35.jpg';
Picture[37]  = 'images/slideImg36.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]  = "June 14th, 2006.";
Caption[2]  = "August 1st, 2006.";
Caption[3]  = "August 18th, 2006.";
Caption[4]  = "August 21st, 2006.";
Caption[5]  = "August 21st, 2006.";
Caption[6]  = "August 21st, 2006.";
Caption[7]  = "August 21st, 2006.";
Caption[8]  = "September 25th, 2006.";
Caption[9]  = "September 25th, 2006.";
Caption[10]  = "September 25th, 2006.";
Caption[11]  = "September 28th, 2006.";
Caption[12]  = "September 28th, 2006.";
Caption[13]  = "September 29th, 2006.";
Caption[14]  = "October 6th, 2006.";
Caption[15]  = "November 16th, 2006.";
Caption[16]  = "November 21st, 2006.";
Caption[17]  = "November 21st, 2006.";
Caption[18]  = "November 22nd, 2006.";
Caption[19]  = "November 23rd, 2006.";
Caption[20]  = "December 6th, 2006.";
Caption[21]  = "December 13th, 2006.";
Caption[22]  = "January 29th, 2007.";
Caption[23]  = "January 29th, 2007.";
Caption[24]  = "January 29th, 2007.";
Caption[25]  = "February 19th, 2007.";
Caption[26]  = "February 19th, 2007.";
Caption[27]  = "August 1st, 2007.";
Caption[28]  = "August 1st, 2007.";
Caption[29]  = "August 1st, 2007.";
Caption[30]  = "August 13th, 2007.";
Caption[31]  = "August 13th, 2007.";
Caption[32]  = "August 13th, 2007.";
Caption[33]  = "October 1st, 2007.";
Caption[34]  = "October 4th, 2007.";
Caption[35]  = "October 4th, 2007.";
Caption[36]  = "October 4th, 2007.";
Caption[37]  = "October 4th, 2007.";
// =====================================
// 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();
}}