var delai=4000;
var i=1;

var imageD = new Array();

imageD[0] = 'andros3.jpg';
imageD[1] = 'andros4.jpg';
imageD[2] = 'andros5.jpg';
imageD[3] = 'andros9.jpg';
imageD[4] = 'andros6.jpg';
imageD[5] = 'andros8.jpg';
imageD[6] = 'andros10.jpg';
imageD[7] = 'andros11.jpg';
imageD[8] = 'andros12.jpg';
imageD[9] = 'andros13.jpg';


function chgImg()
{
  if (document.getElementById) o = document.getElementById('diapo');
  else if (document.images) o = document.images.diapo;
        
  if (o) {
    if (o.filters) o.filters[0].apply();
    o.src = '../img/'+imageD[i];
    if (o.filters) o.filters[0].play();
  }        
        
  i = i+1;
  if (i == imageD.length) i = 0;
  
  setTimeout('chgImg()',delai);
}