// JavaScript Document<script type="text/javascript" language="JavaScript">
<!--
var slideShowSpeed = 2000

var crossFadeDuration = 3

var Pic = new Array()

Pic[0] = 'fotoDeco/23.jpg'
Pic[1] = 'fotoDeco/man.jpg'
Pic[2] = 'fotoDeco/041.jpg'
Pic[3] = 'fotoDeco/046.jpg'
Pic[4] = 'fotoDeco/fiber_t.gif'
Pic[5] = 'fotoDeco/26.jpg'
Pic[6] = 'fotoDeco/27.jpg'
Pic[7] = 'fotoDeco/Brueckenmodule.jpg'
Pic[8] = 'fotoDeco/PLC.jpg'
Pic[9] = 'fotoDeco/comandiM.jpg'
Pic[10] = 'fotoDeco/cerniera.jpg'
Pic[11] = 'fotoDeco/BNS-B20.jpg'
Pic[12] = 'fotoDeco/CSS34.jpg'
Pic[13] = 'fotoDeco/BNS36.jpg'
Pic[14] = 'fotoDeco/AZM200.jpg'
Pic[15] = 'fotoDeco/foto1.jpg'
Pic[16] = 'fotoDeco/foto2.jpg'
Pic[17] = 'fotoDeco/foto3.jpg'
Pic[18] = 'fotoDeco/foto4.jpg'
Pic[19] = 'fotoDeco/foto5.jpg'
Pic[20] = 'fotoDeco/foto6.jpg'
Pic[21] = 'fotoDeco/foto7.jpg'
Pic[22] = 'fotoDeco/foto8.jpg'
Pic[23] = 'fotoDeco/foto9.jpg'
Pic[24] = 'fotoDeco/foto10.jpg'
Pic[25] = 'fotoDeco/foto11.jpg'
Pic[28] = 'fotoDeco/foto12.jpg'
Pic[29] = 'fotoDeco/foto13.jpg'
Pic[30] = 'fotoDeco/foto14.jpg'
Pic[31] = 'fotoDeco/foto15.jpg'
Pic[32] = 'fotoDeco/foto16.jpg'



var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}

//-->