var Pic = new Array(); 
var Caption = new Array();

Pic[1]  = '/shop/kernow/images/fade/fade1.jpg';
Pic[2]  = '/shop/kernow/images/fade/fade2.jpg';
Pic[3]  = '/shop/kernow/images/fade/fade3.jpg';
Pic[4]  = '/shop/kernow/images/fade/fade4.jpg';


Caption[1]  = "Try some of our delicious jams and chutneys.<BR><BR> We've got all sorts of traditional and modern treats to sample in the 'Food Hall'. <BR><BR> All are made with local produce fresh from the fields of Cornwall.";

Caption[2]  = "Our shop is laid out so you can easily move around. Simply click a tab at the top of the screen to change section. Then you can click a heading on the left to look at the treats we have for you.";


Caption[3]  = "All of the products here in our online shop are available to <b>buy online</b>. <BR><BR>You are also more than welcome to come and visit Alex, Jayne, Nicola and Andy at our family run shop in Wadebridge.";

Caption[4]  = "In our 'Alcohol' section you will find award winning wines, meads, and of course, Cornish Cider (or Cyder as the locals spell it!).";


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()', 9000); // (repeat time milliseconds)
}

