var id_current = 0;
		
function diaporama(){
	if(id_current > 0)
		new Effect.Fade('imageDiaporama',{duration:1.0});

	window.setTimeout("NextImg()",1000);	
	}


function NextImg (){
	var t_img = new Array(); 

	t_img[0] = "/images/slide_show/home/1.jpg";
	t_img[1] = "/images/slide_show/home/1.jpg"; 
	t_img[2] = "/images/slide_show/home/2.jpg";
 	t_img[3] = "/images/slide_show/home/3.jpg"; 
	t_img[4] = "/images/slide_show/home/4.jpg";
	t_img[5] = "/images/slide_show/home/5.jpg";
	t_img[6] = "/images/slide_show/home/6.jpg";  
	t_img[7] = "/images/slide_show/home/7.jpg";
	t_img[8] = "/images/slide_show/home/8.jpg";
	t_img[9] = "/images/slide_show/home/9.jpg";
	t_img[10] = "/images/slide_show/home/10.jpg";
	t_img[11] = "/images/slide_show/home/11.jpg";
	t_img[12] = "/images/slide_show/home/12.jpg";
	t_img[13] = "/images/slide_show/home/13.jpg";
	t_img[14] = "/images/slide_show/home/14.jpg";
	t_img[15] = "/images/slide_show/home/15.jpg";
	t_img[16] = "/images/slide_show/home/16.jpg";
	t_img[17] = "/images/slide_show/home/17.jpg";
	t_img[18] = "/images/slide_show/home/18.jpg";
	t_img[19] = "/images/slide_show/home/19.jpg";
	t_img[20] = "/images/slide_show/home/20.jpg";
	t_img[21] = "/images/slide_show/home/21.jpg";
	t_img[22] = "/images/slide_show/home/22.jpg";
	t_img[23] = "/images/slide_show/home/23.jpg";
	t_img[24] = "/images/slide_show/home/24.jpg";
	t_img[25] = "/images/slide_show/home/25.jpg";

	var img = $('imageDiaporama');
	
	img.src = '';
	
	if (id_current < (t_img.length-1)) 
		id_current++;
	else 
		id_current = 1;
		
	img.src = t_img[id_current];
	new Effect.Appear('imageDiaporama',{duration:2.5});

	window.setTimeout("diaporama()", 3500);
	}
