// (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 slideShowSpeed5 = 8000

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

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

Pic5[0] = '/design/fotos/01/01_6.jpg'
Pic5[1] = '/design/fotos/02/02_6.jpg'
Pic5[2] = '/design/fotos/03/03_6.jpg'
//Pic[3] = '4.jpg'
//Pic[4] = '5.jpg'

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

var t5
var j5 = 0
var p5 = Pic5.length

var preLoad5 = new Array()
for (i5 = 0; i5 < p5; i5++){
   preLoad5[i5] = new Image();
   preLoad5[i5].src = Pic5[i5];
}

function runSlideShow5(){

   if (document.all){
      document.images.SlideShow5.style.filter="blendTrans(duration=15)"
      document.images.SlideShow5.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow5.filters.blendTrans.Apply()
   }
   document.images.SlideShow5.src = preLoad5[j5].src
   if (document.all){
      document.images.SlideShow5.filters.blendTrans.Play()
   }
   j5 = j5 + 1
   if (j5 > (p5-1)) j5=0
   t5 = setTimeout('runSlideShow5()', slideShowSpeed5)
}