x = 100;
	function trajet() { // Animation de l'écran
	document.getElementById("ecran").style.left = x+"px";
	max_x = 95;
	nx = 10;
					 if (x <= max_x) {
					 x += nx;	
					 setTimeout('trajet()',70);
					 }
	}

a = 440;
b = 485;
function move() {
	
	document.getElementById("telecommande2").style.left = a+"px";
	document.getElementById("telecommande2").style.top = b+"px";
	max_a = 0;
	max_b = 448;
	na = -7;
	nb = -10;
					 if (a >= max_a && b >= max_b) {
					 a += na;
					 b += nb;
					 setTimeout('move()',70);
					 }
	}
function rmove() {
	document.getElementById("telecommande2").style.left = a+"px";
	document.getElementById("telecommande2").style.top = b+"px";
	min_a = 440;
	min_b = 485;
	na = 7;
	nb = 10;
					 if (a <= min_a && b <= min_b) {
					 a += na;
					 b += nb;
					 setTimeout('rmove()',70);
					 }
	}