var Pic = new Array(); 
var Caption = new Array();

Pic[1]  = '/shop/beaver/Images/fade3.jpg';
Pic[2]  = '/shop/beaver/Images/fade1.jpg';
Pic[3]  = '/shop/beaver/Images/fade2.jpg';


Caption[1]  = "Available in a variety of formats to suit your requirements, our garage storage units are finished to high standards to meet the most exacting of tastes. We have been designing and creating the highest quality furniture for over 25 years.";

Caption[2]  = "Simply click on a heading to the left to begin exploring our complete range of storage solutions - designed to suit your lifestyle.";

Caption[3]  = "Different types of storage units can be placed together in a modular fashion, if you should so require.<BR>All our cabinets are hand built by us in the United Kingdom.";


var i;
var jss = 1;
var pss = Pic.length-1;

var preLoad = new Array();
for (i = 1; i < pss+1; i++){
preLoad[i] = new Image();
preLoad[i].src = Pic[i];}


function Swap(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=4)";
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;
setTimeout('Swap()', 8000); // (repeat time milliseconds)
}

