var larghFoto = 780;
var altezFoto = 200;
var a = 0;
imgPath = new Array;
SiClickGoTo = new Array;

if (document.images)
	{
i0 = new Image;
i0.src = './top_foto/1.jpg';
imgPath[0] = i0.src;

i1 = new Image;
i1.src = './top_foto/2.jpg';
imgPath[1] = i1.src;

i2 = new Image;
i2.src = './top_foto/3.jpg';
imgPath[2] = i2.src;

i3 = new Image;
i3.src = './top_foto/4.jpg';
imgPath[3] = i3.src;

i4 = new Image;
i4.src = './top_foto/5.jpg';
imgPath[4] = i4.src;

i5 = new Image;
i5.src = './top_foto/6.jpg';
imgPath[5] = i5.src;

	}

function ejs_img_fx(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="./top_foto/1.jpg" width="' + larghFoto + '" height="' + altezFoto + '" border="0" name="defil" style="filter:progid:DXImageTransform.Microsoft.Fade(Duration=2)" />');
		defilimg();
		}
	else
		{
		document.write('<img src="./top_foto/1.jpg" border="0" width="' + larghFoto + '" height="' + altezFoto + '" alt=" " />');
		}
	}
function ImgDest()
	{
	document.location.href = SiClickGoTo[a-1];
	}
function defilimg()
	{
//a = num immagini
	if (a == 6)
		{
		a = 0;
		}
	if (document.images)
		{
		ejs_img_fx(document.defil);
		document.defil.src = imgPath[a];
		tempo3 = setTimeout("defilimg()",5000);
		a++;
		}
	}
