
<!--
//http://www.editeurjavascript.com/scripts/scripts_images_3_429.php
var imgs=new Array();
imgs[0]="images/home/home_page1.jpg";
imgs[1]="images/home/home_page2.jpg";
imgs[2]="images/home/home_page3.jpg";
imgs[3]="images/home/home_page4.jpg";



var cpt=0;
function changeimages()
{
	document.getElementById("ima").src=imgs[cpt];
	cpt++;
	if(cpt>=imgs.length) cpt=0;
	setTimeout("changeimages()",3000);
}
//-->


