
// (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 = 6000;

// 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]  = 'imgs/art1/LotsTeeShirts.jpg';
Picture[2]  = 'imgs/art1/Design_MetalDog.jpg';
Picture[3]  = 'imgs/art1/Hoody_Dog.jpg';
Picture[4]  = 'imgs/art1/Design_FlameGuitar.jpg';
Picture[5]  = 'imgs/art1/Jersey_Flame.jpg';
Picture[6]  = 'imgs/art1/Design_WhenGuitars.jpg';
Picture[7]  = 'imgs/art1/Tee_WhenGuitars.jpg';
Picture[8]  = 'imgs/art1/Design_NiteOwl.jpg';
Picture[9]  = 'imgs/art1/Tank_NiteOwl1.jpg';
Picture[10]  = 'imgs/art1/Design_OdeGuitar.jpg';
Picture[11]  = 'imgs/art1/Tee_OdeGuitar2.jpg';
Picture[12]  = 'imgs/art1/Design_BuryMe.jpg';
Picture[13]  = 'imgs/art1/Tee_Buryme.jpg';
Picture[14]  = 'imgs/art1/Design_SpaceGuitar.jpg';
Picture[15]  = 'imgs/art1/PikBox_blk.jpg';
Picture[16]  = 'imgs/art1/PikBox_red.jpg';
Picture[17]  = 'imgs/art1/Mug_Bones.jpg';
Picture[18]  = 'imgs/art1/Design_Guitarist.jpg';
Picture[19]  = 'imgs/art1/Hat_Guitarist.jpg';
Picture[20]  = 'imgs/art1/Design_GuitarGirls.jpg';
Picture[21]  = 'imgs/art1/Print_Warrior.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]  = "<a href='http://www.cafepress.com/michaelpeace' target='_blank'>Michael's Cool Stuff Shop</a>";
Caption[2]  = "My Dog Plays Heavy Metal - Funny Design for Animal Lovers";
Caption[3]  = "on T-Shirts, Tanks, Hoodies, and Mugs";
Caption[4]  = "Step Away From The Shirt... and No One Gets Hurt ";
Caption[5]  = "One of my hottest designs. Hot? It's on Fire.";
Caption[6]  = "When the guitars come out at night...The stars begin to shine.";
Caption[7]  = "Value T-Shirt for the Starving Guitarist";
Caption[8]  = "It's Boogie Time for Nite Owls ";
Caption[9]  = "Stand back because the night only last so long. I am the NITE OWL";
Caption[10]  = "Ode to the guitar and it's warrior - written on aged parchment";
Caption[11]  = "... FREEBIRD Dude!!!";
Caption[12]  = "Bury Me With My Guitar - A cool skull for your body!";
Caption[13]  = "on T-Shirts, Tanks, Hoodies, and Mugs ";
Caption[14]  = "The Astral Guitar Design";
Caption[15]  = "Tile Top Pick Boxes - One of my Hottest Sellers ";
Caption[16]  = "Comes in 2 hot colors and cool designs ";
Caption[17]  = "Hot Coco or Coffee... with Bones! ";
Caption[18]  = "Gear for the Real Guitarist ";
Caption[19]  = "Hats are available too ";
Caption[20]  = "Fantasy Art - Girls and Guitars ";
Caption[21]  = "Framed Prints available for your wall ";




// =====================================
// 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);
}

