
var Picture = new Array(); // don't change this
var showHot = false;       // don't change this

Picture[1]  = '../images/collections_aeroplane.jpg';
Picture[2]  = '../images/collections_bicycle.jpg';
Picture[3]  = '../images/collections_motorcycle.jpg';
Picture[4]  = '../images/collections_engines.jpg';
Picture[5]  = '../images/collections_automobiles.jpg';
Picture[6]  = '../images/collections_local_history.jpg';
Picture[7]  = '../images/collections_acquisitions.jpg';
Picture[8]  = '../images/collections_restoration.jpg';
Picture[9]  = '../images/collections_more.jpg';

var choosen
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=="A") jss = 1;
if (how=="B") jss = 2;
if (how=="C") jss = 3;
if (how=="D") jss = 4;
if (how=="E") jss = 5;
if (how=="F") jss = 6;
if (how=="G") jss = 7;
if (how=="H") jss = 8;
if (how=="I") jss = 9;


if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
	if (document.all){
	document.images.PictureBox.style.filter="blendTrans(duration=1)";
	document.images.PictureBox.filters.blendTrans.Apply();}
	document.images.PictureBox.src = preLoad[jss].src;
		if (document.all) document.images.PictureBox.filters.blendTrans.Play();
	}
}
