imgPath1 = new Array; 
if (document.images) 
{ 
i01 = new Image; 
i01.src = 'images/index1.jpg'; 
imgPath1[0] = i01.src; 
i11 = new Image; 
i11.src = 'images/index2.jpg'; 
imgPath1[1] = i11.src; 
i21 = new Image; 
i21.src = 'images/index3.jpg'; 
imgPath1[2] = i21.src; 
i31 = new Image; 
i31.src = 'images/index4.jpg'; 
imgPath1[3] = i31.src; 
i41 = new Image; 
i41.src = 'images/index5.jpg'; 
imgPath1[4] = i41.src;
i51 = new Image; 
i51.src = 'images/index6.jpg'; 
imgPath1[5] = i51.src; 
} 

a1 = 0; 
function ejs_img_fx1(img) 
{ 
if(img && img.filters && img.filters[0]) 
{ 
img.filters[0].apply(); 
img.filters[0].play(); 
} 
} 

function StartAnim() 
{ 
if (document.images) 
{ 
document.write('<IMG SRC="images/index1.jpg" border="0" width="842" height="486" NAME=defil1 style="filter:progid:DXImageTransform.Microsoft.Fade(duration=1.0,overlap=0.5)">'); 
defilimg1() 
} 
else 
{ 
document.write('<IMG SRC="images/index1.jpg" border="0" width="842" height="486">') 
} 
} 

function defilimg1() 
{ 
if (a1 == 6) 
{ 
a1 = 0; 
} 
if (document.images) 
{ 
ejs_img_fx1(document.defil1) 
document.defil1.src = imgPath1[a1]; 
tempo31 = setTimeout("defilimg1()",5000); 
a1++; 
} 
} 



