// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000

// Duration of crossfade (seconds)
var crossFadeDuration = 20

// Specify the image files
var Pic = new Array() // don't touch this
var picDesc = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/slideshow/wooden-cabbage-slideshow-1.jpg';
picDesc[0] = 'Welcome to Wooden Cabbage. Looking from the top of the drive.';
Pic[1] = 'images/slideshow/wooden-cabbage-slideshow-2.jpg';
picDesc[1] = 'Approaching Wooden Cabbage Bed and Breakfast.';
Pic[2] = 'images/slideshow/wooden-cabbage-slideshow-3.jpg';
picDesc[2] = 'Martyn and Susie welcome you to Wooden Cabbage.';
Pic[3] = 'images/slideshow/wooden-cabbage-slideshow-4.jpg';
picDesc[3] = 'Bedrooms at Wooden Cabbage Bed and Breakfast.';
Pic[4] = 'images/slideshow/wooden-cabbage-slideshow-5.jpg';
picDesc[4] = 'Bedrooms at Wooden Cabbage Bed and Breakfast.';
Pic[5] = 'images/slideshow/wooden-cabbage-slideshow-6.jpg';
picDesc[5] = 'Bedrooms at Wooden Cabbage Bed and Breakfast.';
Pic[6] = 'images/slideshow/wooden-cabbage-slideshow-15.jpg';
picDesc[6] = 'One of the bathrooms at Wooden Cabbage Bed and Breakfast.';
Pic[7] = 'images/slideshow/wooden-cabbage-slideshow-7.jpg';
picDesc[7] = 'Views from the bedrooms.';
Pic[8] = 'images/slideshow/wooden-cabbage-slideshow-8.jpg';
picDesc[8] = 'Breakfast in the Garden Room';
Pic[9] = 'images/slideshow/wooden-cabbage-slideshow-9.jpg';
picDesc[9] = 'Comfortable sofas for relaxing in the evening.';
Pic[10] = 'images/slideshow/wooden-cabbage-slideshow-10.jpg';
picDesc[10] = 'Views from the Terrace.';
Pic[11] = 'images/slideshow/wooden-cabbage-slideshow-11.jpg';
picDesc[11] = 'A crisp winters day at Wooden Cabbage B&amp;B';
Pic[12] = 'images/slideshow/wooden-cabbage-slideshow-12.jpg';
picDesc[12] = 'The Kitchen Garden at Wooden Cabbage bed and breakfast.';
Pic[13] = 'images/slideshow/wooden-cabbage-slideshow-13.jpg';
picDesc[13] = 'Supper in The Garden Room at Wooden Cabbage B&amp;B';
Pic[14] = 'images/slideshow/wooden-cabbage-slideshow-14.jpg';
picDesc[14] = 'Beautiful sunsets at Wooden Cabbage B&amp;B';

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.theMainImage.style.filter="blendTrans(duration=2)"
      document.images.theMainImage.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.theMainImage.filters.blendTrans.Apply()   
   }
   document.images.theMainImage.src = preLoad[j].src
	  document.getElementById('theMainImageDescription').innerHTML = picDesc[j]   
   if (document.all){
      document.images.theMainImage.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}