arrayPhoto = [ ["http://www.evosys.be/Photos/SORENCO/0100004222840_177_133.jpg" ,"http://www.evosys.be/Photos/SORENCO/0200004222840_177_133.jpg" ,"http://www.evosys.be/Photos/SORENCO/0300004222840_177_133.jpg" ,"http://www.evosys.be/Photos/SORENCO/0400004222840_177_133.jpg" ,"http://www.evosys.be/Photos/SORENCO/0500004222840_177_133.jpg"]]; // gallery var timer = 0; var ie = document.all; var imageholder = new Array(); for (i = 0; i < arrayPhoto.length; i++) { imageholder[i] = new Array(); for (j = 0; j < arrayPhoto[i].length; j++) { imageholder[i][j] = new Image(); imageholder[i][j].src = arrayPhoto[i][j]; } } var currentPhoto = new Array(); for (i = 0; i < imageholder.length; i++) { currentPhoto[i] = 0; } document.write('

') function loopPhoto() { for (i = 0; i < imageholder.length; i++) { if (currentPhoto[i] == (imageholder[i].length-1)) currentPhoto[i] = 0; else currentPhoto[i]++; if (ie) document.images.pvdw.filters[0].apply(); document.images.pvdw.src = imageholder[0][currentPhoto[i]].src; if (ie) document.images.pvdw.filters[0].play(); } setTimeout("loopPhoto()", (3000)); } function initPhoto() { setTimeout("loopPhoto()", (3000)); } initPhoto()