// Set the transition speed (in milliseconds)
var TransSpeed = 10000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 1;

var Picture = new Array();
var showHot = false;

// Specify the image files...
 Picture[1] = 'photos/Pine-Dining-3x3-Farmhouse-Table.jpg';
 Picture[2] = 'photos/Pine-Dining-Beechwood-Chair-Spindle-Carver.jpg';
 Picture[3] = 'photos/Pine-Dining-Bretton-Hard-Seat.jpg';
 Picture[4] = 'photos/Pine-Dining-Bretton-Rush-Seat-Buttermilk.jpg';
 Picture[5] = 'photos/Pine-Dining-Bretton-Rush-Seat.jpg';
 Picture[6] = 'photos/Pine-Dining-Double-Pedestal.jpg';
 Picture[7] = 'photos/Pine-Dining-Fiddle-Carver.jpg';
 Picture[8] = 'photos/Pine-Dining-Jumbo-Table.jpg';
 Picture[9] = 'photos/Pine-Dining-Round-Dropleaf-Table.jpg';
 Picture[10] = 'photos/Pine-Dining-Round-Table.jpg';
 Picture[11] = 'photos/Pine-Dining-Spindle-Side-Chair.jpg';

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){
jss = how;
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.all) document.images.PictureBox.filters.blendTrans.Play();
}}