// (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 = 3000

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

// 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

Pic[0] = '../../images/conf/bf2007gal/BF07_07.jpg'
Pic[1] = '../../images/conf/bf2007gal/BF07_24.jpg'
Pic[2] = '../../images/conf/bf2007gal/BF07_21.jpg'
Pic[3] = '../../images/conf/bf2007gal/BF07_15.jpg'
Pic[4] = '../../images/conf/bf2007gal/BF07_17.jpg'
Pic[5] = '../../images/conf/bf2007gal/BF07_04.jpg'
Pic[6] = '../../images/conf/bf2007gal/BF07_03.jpg'
Pic[7] = '../../images/conf/bf2007gal/BF07_20.jpg'
Pic[8] = '../../images/conf/bf2007gal/BF07_02.jpg'
Pic[9] = '../../images/conf/bf2007gal/BF07_01.jpg'
Pic[10] = '../../images/conf/bf2007gal/BF07_25.jpg'
Pic[11] = '../../images/conf/bf2007gal/BF07_06.jpg'
Pic[12] = '../../images/conf/bf2007gal/BF07_22.jpg'
Pic[13] = '../../images/conf/bf2007gal/BF07_05.jpg'
Pic[14] = '../../images/conf/bf2007gal/BF07_27.jpg'
Pic[15] = '../../images/conf/bf2007gal/BF07_11.jpg'
Pic[16] = '../../images/conf/bf2007gal/BF07_12.jpg'
Pic[17] = '../../images/conf/bf2007gal/BF07_13.jpg'
Pic[18] = '../../images/conf/bf2007gal/BF07_14.jpg'
Pic[19] = '../../images/conf/bf2007gal/BF07_16.jpg'
Pic[20] = '../../images/conf/bf2007gal/BF07_08.jpg'
Pic[21] = '../../images/conf/bf2007gal/BF07_10.jpg'
Pic[22] = '../../images/conf/bf2007gal/BF07_18.jpg'
Pic[23] = '../../images/conf/bf2007gal/BF07_19.jpg'
Pic[24] = '../../images/conf/bf2007gal/BF07_23.jpg'
Pic[25] = '../../images/conf/bf2007gal/BF07_28.jpg'
Pic[26] = '../../images/conf/bf2007gal/BF07_32.jpg'
Pic[27] = '../../images/conf/bf2007gal/BF07_09.jpg'
Pic[28] = '../../images/conf/bf2007gal/BF07_29.jpg'
Pic[29] = '../../images/conf/bf2007gal/BF07_31.jpg'
Pic[30] = '../../images/conf/bf2007gal/BF07_30.jpg'
Pic[31] = '../../images/conf/bf2007gal/BF07_26.jpg'
// =======================================
// 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.SlideShowBF07.style.filter="blendTrans(duration=2)"
      document.images.SlideShowBF07.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowBF07.filters.blendTrans.Apply()      
   }
   document.images.SlideShowBF07.src = preLoad[j].src
   if (document.all){
      document.images.SlideShowBF07.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}
