<!--
	var zone = 5;
	var LAYID = 0;

	var infos_lay = new Array();
	var lay_photo = new Array();
	var lay_rotation = null;

	var lay_zone0 = new Array();
	var lay_zone1 = new Array();
	var lay_zone2 = new Array();

	infos_lay[0] = new Array();
	infos_lay[0]['photo'] = '<img src="photos/184x144/1.jpg" id="photo" alt="Michel Dussouchaud - Formation Testing" title="Michel Dussouchaud - Formation Testing" />';
	infos_lay[0]['image'] = new Image();
	infos_lay[0]['image'].src = 'photos/184x144/1.jpg';
	lay_photo.push(0);
	lay_zone0.push(0);
	infos_lay[1] = new Array();
	infos_lay[1]['photo'] = '<img src="photos/184x144/2.jpg" id="photo" alt="Michel Dussouchaud - Formation Testing" title="Michel Dussouchaud - Formation Testing" />';
	infos_lay[1]['image'] = new Image();
	infos_lay[1]['image'].src = 'photos/184x144/2.jpg';
	lay_photo.push(1);
	lay_zone0.push(1);
	infos_lay[2] = new Array();
	infos_lay[2]['photo'] = '<img src="photos/184x144/3.jpg" id="photo" alt="Michel Dussouchaud - Formation Testing" title="Michel Dussouchaud - Formation Testing" />';
	infos_lay[2]['image'] = new Image();
	infos_lay[2]['image'].src = 'photos/184x144/3.jpg';
	lay_photo.push(2);
	lay_zone1.push(2);
	infos_lay[3] = new Array();
	infos_lay[3]['photo'] = '<img src="photos/184x144/4.jpg" id="photo" alt="Michel Dussouchaud - Formation Testing" title="Michel Dussouchaud - Formation Testing" />';
	infos_lay[3]['image'] = new Image();
	infos_lay[3]['image'].src = 'photos/184x144/4.jpg';
	lay_photo.push(3);
	lay_zone1.push(3);
	infos_lay[4] = new Array();
	infos_lay[4]['photo'] = '<img src="photos/184x144/5.jpg" id="photo" alt="Michel Dussouchaud" title="Michel Dussouchaud" />';
	infos_lay[4]['image'] = new Image();
	infos_lay[4]['image'].src = 'photos/184x144/5.jpg';
	lay_photo.push(4);
	lay_zone1.push(4);

	var debut = lay_photo.splice(0, Math.round(Math.random() * (lay_photo.length - 1)));
	eval("lay_photo.push(" + debut.toString() + ");");

	function lay_swap_france() {
		lay_rotation = lay_photo;
	}

	function lay_swap_zone(zone) {
		if (eval("lay_zone" + zone + ".length") > 0) {
			eval("lay_rotation = lay_zone" + zone + ";");
	 		load_lay(lay_next());
		}
		else alert("Il n'y a pas de coup de coeur pour cette région");
	}

	function lay_next() {
		if (lay_rotation.length > 1) {
			var new_lay = lay_rotation.shift();
			lay_rotation.push(new_lay);
			return new_lay;
		} else {
			return lay_rotation[0];
		}
	}

	function load_lay(z){
		try{
			document.getElementById('photo-laytika').innerHTML = infos_lay[z]["photo"];
		} catch (e){
			alert('pb chargement lay');
		}
	}

	function charge_lay_boucle() {
	   if(LAYID) {
	      clearTimeout(LAYID);
	      LAYID  = 0;
	   }
	   load_lay(lay_next());
	   LAYID = setTimeout("charge_lay_boucle()", 5000);
	}

	lay_swap_france();
	if (lay_rotation.length > 0)
		 charge_lay_boucle();
//-->
