// (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]  = 'one/madsen.jpg';
Picture[2]  = 'one/cheech.jpg';
Picture[3]  = 'one/craigt.jpg';
Picture[4]  = 'one/danson.jpg';
Picture[5]  = 'one/drew.jpg';
Picture[6]  = 'one/hagerty.jpg';
Picture[7]  = 'one/eddval.jpg';
Picture[8]  = 'one/martha.jpg';
Picture[9]  = 'one/reggie.jpg';
Picture[10]  = 'one/roncox.jpg';
Picture[11]  = 'one/sonny.jpg';
Picture[12]  = 'one/vandyke.jpg';
Picture[13]  = 'one/donnakiss.jpg';
Picture[14]  = 'one/rayschultz.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]  = "Posing with owner Charlie Sammut and National Geographic host, Boyde Madsen (right).";
Caption[2]  = "On the set with actor, Cheech Morin.";
Caption[3]  = "Posing with 'Coach' star, Craig T. Nelson.";
Caption[4]  = "Brandi with actor Ted Danson on the set of Made in America.";
Caption[5]  = "Striking a pose with comedian and actor, Drew Carey.";
Caption[6]  = "Relaxing with owner Charlie Sammut and actor, Dan Hagerty (right).";
Caption[7]  = "A visit with Eddie Van Halen and Valerie Bertinelli.";
Caption[8]  = "With homemaker icon Martha Stewart and friends.";
Caption[9]  = "Kissing former baseball slugger, Reggie Jackson.";
Caption[10]  = "Posing with former Green Bay Packers star, Ron Cox.";
Caption[11]  = "Bumping into former entertainer and politician, Sonny Bono.";
Caption[12]  = "Puckering up for 'Coach' star, Jerry Vandyke.";
Caption[13]  = "Brandi smooches with Donna Sumimoto from our executive office in Hawaii.";
Caption[14]  = "Brandi with Ray 'Ray Bear' Schultz, our magical Master Bear Carver from Deer Park, Washington.";


// =====================================
// 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();
}}

