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

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

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

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

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

var t3
var j3 = 0
var p3 = Pic3.length

var preLoad3 = new Array()
for (i3 = 0; i3 < p3; i3++){
   preLoad3[i3] = new Image();
   preLoad3[i3].src = Pic3[i3];
}

function runSlideShow3(){

   if (document.all){
      document.images.SlideShow3.style.filter="blendTrans(duration=15)"
      document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow3.filters.blendTrans.Apply()
   }
   document.images.SlideShow3.src = preLoad3[j3].src
   if (document.all){
      document.images.SlideShow3.filters.blendTrans.Play()
   }
   j3 = j3 + 1
   if (j3 > (p3-1)) j3=0
   t3 = setTimeout('runSlideShow3()', slideShowSpeed3)
}