function tmp()
{
	
	if (document.all)
		{
			document.images.tmp.style.filter="blendTrans(duration=2)";
			document.images.tmp.style.filter="blendTrans(duration=scambio)";
			document.images.tmp.filters.blendTrans.Apply();      
			document.images.tmp.src = carica1[xx].src;
			document.images.tmp.filters.blendTrans.Play();
   		}
	
	xx = xx + 1;

	if (xx > (p1-1)) xx=0;
	

}


var vel = 3000
var scambio = 3
var j = 0
var xx= 0



var carica1 = new Array()



var tem = new Array()
	tem[0] = "img/tempo/01.jpg"
	tem[1] = "img/tempo/02.jpg"
	tem[2] = "img/tempo/03.jpg"
	tem[3] = "img/tempo/04.jpg"
	tem[4] = "img/tempo/05.jpg"
	tem[5] = "img/tempo/06.jpg"
	tem[6] = "img/tempo/07.jpg"
	tem[7] = "img/tempo/08.jpg"
	tem[8] = "img/tempo/09.jpg"
	tem[9] = "img/tempo/10.jpg"
	tem[10] = "img/tempo/11.jpg"
	tem[11] = "img/tempo/12.jpg"
	tem[12] = "img/tempo/13.jpg"
	tem[13] = "img/tempo/14.jpg"
	tem[14] = "img/tempo/15.jpg"
var p1= tem.length

for (a = 0; a < p1; a++)
{
   carica1[a] = new Image()
   carica1[a].src = tem[a]
}







function video()
{

	tmp();
	setTimeout('video()', vel);

}
