// (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 = 10000;

// 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

// 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/01.jpeg';
Picture[2]  = 'images/02.jpeg';
Picture[3]  = 'images/03.jpeg';
Picture[4]  = 'images/04.jpeg';
Picture[5]  = 'images/05.jpeg';
Picture[6]  = 'images/06.jpeg';
Picture[7]  = 'images/07.jpeg';
Picture[8]  = 'images/08.jpeg';
Picture[9]  = 'images/09.jpeg';
Picture[10] = 'images/10.jpeg';
Picture[11] = 'images/11.jpeg';

// 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]  = "&quot;No paperwork. No appointments. No sales people. Simple, convenient online approval.&quot;";
Caption[2]  = "&quot;We paid online with our credit card and had our policies in force in less than 10 minutes.&quot;";
Caption[3]  = "&quot;We're busy working and raising a family. We needed coverage right now. Not weeks or months from now.&quot;";
Caption[4]  = "&quot;After we bought our house, we realized we needed more life insurance.&quot;";
Caption[5]  = "&quot;We never thought buying insurance could be so easy.&quot;";
Caption[6]  = "&quot;After our second child was born, I knew I needed more life insurance.&quot;";
Caption[7]  = "&quot;When I lost my job, I lost my life insurance.  Luckily, I was able to get coverage right away, with no hassles.&quot;";
Caption[8]  = "&quot;I was able to get my insurance during my lunch break.&quot;";
Caption[09] = "&quot;I checked alot of places before buying here. The rates are the lowest I found.&quot;";
Caption[10] = "&quot;My time is valuable, I didn't want to spend it talking with a salesperson.&quot;";
Caption[11]  = "&quot;I relax more and sleep better at night knowing my family is provided for.&quot;";


// =====================================
// 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);
}

