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

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

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

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

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

var t4
var j4 = 0
var p4 = Pic4.length

var preLoad4 = new Array()
for (i4 = 0; i4 < p4; i4++){
   preLoad4[i4] = new Image();
   preLoad4[i4].src = Pic4[i4];
}

function runSlideShow4(){

   if (document.all){
      document.images.SlideShow4.style.filter="blendTrans(duration=15)"
      document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow4.filters.blendTrans.Apply()
   }
   document.images.SlideShow4.src = preLoad4[j4].src
   if (document.all){
      document.images.SlideShow4.filters.blendTrans.Play()
   }
   j4 = j4 + 1
   if (j4 > (p4-1)) j4=0
   t4 = setTimeout('runSlideShow4()', slideShowSpeed4)
}