// Preload Images
i1 = new Image(305,30)
i1.src = "/images/greg-fa.png"
i2 = new Image(24,191)
i2.src = "/images/greg-v.png"
i3 = new Image(9,51)
i3.src = "/images/fa.png"

// Prepare Slide Show
var P = new Array()
P[0] = '/images/MSS-RWC.jpg'
P[1] = '/images/MSS-PLP.jpg'
P[2] = '/images/MSS-MR.jpg'
P[3] = '/images/MSS-EBTB.jpg'
var j = 0
var l = P.length
var pl = new Array()
for (i = 0; i < l; i++){
   //pl[i] = new Image(402,300)
   pl[i] = new Image()
   pl[i].src = P[i]
}
function runSS(){
   if (document.all){
      document.images.SS.style.filter="blendTrans(duration=3)"
      document.images.SS.filters.blendTrans.Apply()      
   }
   document.images.SS.src = pl[j].src
   if (document.all){
      document.images.SS.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (l-1)) j=0
   setTimeout('runSS()', 8000)
}
