﻿// (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 = 4000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below
var Caption = new Array()

Pic[0] = './SlideShowImages/smallYeOldSixBellsInn.jpg'
Pic[1] = './SlideShowImages/smallPaddingtonStation.jpg'
Pic[2] = './SlideShowImages/smallSignalBox.jpg'
Pic[3] = './SlideShowImages/smallAcademy.jpg'
Pic[4] = './SlideShowImages/smallBandstand.jpg'
Pic[5] = './SlideShowImages/smallBlaiseCastle.jpg'
Pic[6] = './SlideShowImages/smallChurchStJames.jpg'
Pic[7] = './SlideShowImages/smallCockersandAbbey.jpg'
Pic[8] = './SlideShowImages/smallCross.jpg'
Pic[9] = './SlideShowImages/smallFiveRiseLocks.jpg'
Pic[10] = './SlideShowImages/smallHorseThrough.jpg'
Pic[11] = './SlideShowImages/smallLittleMartinHillWindmill.jpg'
Pic[12] = './SlideShowImages/smallRegentMill.jpg'
Pic[13] = './SlideShowImages/smallShelters.jpg'
Pic[14] = './SlideShowImages/smallStocksAndWhippingPost.jpg'
Pic[15] = './SlideShowImages/smallSuspensionBridge.jpg'
Pic[16] = './SlideShowImages/smallTelephoneKiosk.jpg'
Pic[17] = './SlideShowImages/smallViaduct.jpg'
Pic[18] = './SlideShowImages/smallVillageWaterPump.jpg'
Pic[19] = './SlideShowImages/smallWarehouse.jpg'

Caption[0] =  "YE Old Six Bells  299104 © Mr Tim Nichols";
Caption[1] =  "Paddington Station 209557 © Anthony Rau";
Caption[2] =  "Signal Box 192150 © Mr Robin W. Symons ARPS";
Caption[3] =  "Academy Cinema 379118 © Janet Gibson";
Caption[4] =  "Bandstand 385310 © Colin Mitchell";
Caption[5] =  "Blaise Castle 379730 © Cyril N Chapman";
Caption[6] =  "Church of St James 72162 © Eric C. Apperley";
Caption[7] =  "Cockersand Abbey 182270 © Ruth Povey";
Caption[8] =  "Tennyson’s Cross 393240 © Barry Senior ARPS";
Caption[9] =  "Five Rise Locks 337964 © Alan V Whetton LRPS";
Caption[10] =  "Horse Through 387188 © Brian Head";
Caption[11] =  "Windmill 183668 © Mr G M Smith ARPS";
Caption[12] =  "Regent Mill 470634   © Mr Brian Lomas";
Caption[13] =  "Shelters 183673 © Mr G M Smith ARPS";
Caption[14] =  "Stocks and Whipping Post 474045 © David Ross LRPS";
Caption[15] =  "Suspension Bridge 350232 © Clive Jones ";
Caption[16] =  "Telephone Kiosk 47095 © Dale Venn LRPS";
Caption[17] =  "Viaduct 304882 © Bob Cottrell ARPS AFIAP DPAGB";
Caption[18] =  "Village Water Pump 50819 © Mrs Jane Greatorex ARPS";
Caption[19] =  "Warehouses 83195 © Mr Nigel Ward LRPS";


// =======================================
// 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]
   preLoad[i].alt = Caption[i]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   document.images.SlideShow.alt = preLoad[j].alt
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)

   // alert('test is working!');
}


