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

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

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

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

function runSlideShowLogo(){
   if (document.all){
      document.images.SlideShowLogo.style.filter="blendTrans(duration=2)"
      document.images.SlideShowLogo.style.filter="blendTrans(duration=crossFadeDurationLogo)"
      document.images.SlideShowLogo.filters.blendTrans.Apply()      
   }
   document.images.SlideShowLogo.src = preLoadLogo[j].src
   if (document.all){
      document.images.SlideShowLogo.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShowLogo()', slideShowSpeedLogo)
}

