var Pic = new Array(); 
var Caption = new Array();

Pic[1]  = '/shop/benmay/images/fade/fade4.jpg';
Pic[2]  = '/shop/benmay/images/fade/fade2.jpg';
Pic[3]  = '/shop/benmay/images/fade/fade3.jpg';
Pic[4]  = '/shop/benmay/images/fade/fade1.jpg';
Pic[5]  = '/shop/benmay/images/fade/fade5.jpg';
Pic[6]  = '/shop/benmay/images/fade/fade6.jpg';
Pic[7]  = '/shop/benmay/images/fade/fade7.jpg';
Pic[8]  = '/shop/benmay/images/fade/fade8.jpg';


Caption[1]  = "We make a range of seating and sculpture for the garden.<BR><BR>It's unique, a bit of fun, and often practical too!";

Caption[2]  = "A piece of Ben's unique sculpture.<BR><BR>Commissions are always welcome for anything connected with wood.";


Caption[3]  = "Most of the farm work is done traditionally using our Shire horses.";

Caption[4]  = "Why not come and stay at our traditionally run farm in the heart of Devon? <BR><BR>A great family experience.";

Caption[5]  = "Meeting royalty!";

Caption[6]  = "We run a range of great fun woodland craft courses catering for people of all abilities.";
Caption[7]  = "All our livestock are very free range and reared following organic principles.";

Caption[8]  = "We are committed to managing our land in an environmentally sensitive way.";

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()', 6000); // (repeat time milliseconds)
}

