// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

var SlideShowSpeed = 6500;

var CrossFadeDuration = 2;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

Picture[1]  = 'images/slideshows/homeshow01/pixie.jpg';
Picture[2]  = 'images/slideshows/homeshow01/personality.jpg';
Picture[3]  = 'images/slideshows/homeshow01/figure.jpg';
Picture[4]  = 'images/slideshows/homeshow01/buddies.jpg';
Picture[5]  = 'images/slideshows/homeshow01/stevie.jpg';
Picture[6]  = 'images/slideshows/homeshow01/sassy.jpg';
Picture[7]  = 'images/slideshows/homeshow01/angel.jpg';
Picture[8]  = 'images/slideshows/homeshow01/alexander.jpg';
Picture[9]  = 'images/slideshows/homeshow01/bed.jpg';
Picture[10] = 'images/slideshows/homeshow01/cassidy.jpg';
Picture[11] = 'images/slideshows/homeshow01/education.jpg';
Picture[12] = 'images/slideshows/homeshow01/speckles.jpg';
Picture[13] = 'images/slideshows/homeshow01/chair.jpg';
Picture[14] = 'images/slideshows/homeshow01/joke.jpg';
Picture[15] = 'images/slideshows/homeshow01/morgan.jpg';
Picture[16] = 'images/slideshows/homeshow01/flossing.jpg';
Picture[17] = 'images/slideshows/homeshow01/window.jpg';
Picture[18] = 'images/slideshows/homeshow01/weekend.jpg';

Caption[1]  = "&ldquo;Gotta hang up now &mdash; I&rsquo;m about to be adopted!&rdquo;";
Caption[2]  = "Here comes Mr. Personality!";
Caption[3]  = "&ldquo;When I was young, I had quite the figure...&rdquo;";
Caption[4]  = "Another day in the tenement.";
Caption[5]  = "&ldquo;Say what?&rdquo; In one ear and out the other!";
Caption[6]  = "&ldquo;I&rsquo;m... too sexy for this chair...&rdquo;";
Caption[7]  = "With a name like Angel, you can get away with most anything.";
Caption[8]  = "&ldquo;Hi... I&rsquo;m Alexander, and I AM truly great.&rdquo;";
Caption[9]  = "&ldquo;Well yesterday, this bed was NEW.&rdquo;";
Caption[10] = "&ldquo;Ummm... Would you say this is my best angle?&rdquo;";
Caption[11] = "Never underestimate the value of an education.";
Caption[12] = "Speckles leans forward to drive home a point.";
Caption[13] = "&ldquo;Lsten, when I want you to sit here, I&rsquo;ll let you know.&rdquo;";
Caption[14] = "A good joke is always appreciated.";
Caption[15] = "&ldquo;Like all tuxedo tabbies, I have a high IQ.&rdquo;";
Caption[16] = "Flossing makes for healthy teeth and gums.";
Caption[17] = "Competition for the window seat remains fierce.";
Caption[18] = "&ldquo;Oh, my head... Who put the catnip in the punch?&rdquo;";

// =====================================
// 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);
}