var timer = null;
var iconeId = 1;
var TabIcone = new Array;

TabIcone[0] = 1;
TabIcone[1] = 2;
TabIcone[2] = 3;
TabIcone[3] = 4;
TabIcone[4] = 5;
TabIcone[5] = 6;
TabIcone[6] = 7;
TabIcone[7] = 8;
TabIcone[8] = 9;
TabIcone[9] = 10;


function tourner_icone() {
  timer = setInterval("changer_icone()", 2000);
}

function tourner_icone2() {
  timer = setInterval("changer_icone2()", 2000);
}

function changer_icone() {
	var imgg = document.getElementById("Icone");
	imgg.src="./upload/icone/" + iconeId + ".gif";
	iconeId=iconeId + 1 ;
	if (iconeId>TabIcone.length) 
		{
			iconeId=1;
		}
}
	
function changer_icone2() {
	var imgg = document.getElementById("Icone");
	imgg.src="../upload/icone/" + iconeId + ".gif";
	iconeId=iconeId + 1 ;
	if (iconeId>TabIcone.length) 
		{
			iconeId=1;
		}
}
