function changeBorder(cadre, inOut)
{
		//var randColor = new Array(1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7 ,7 ,7 ,7 ,7 ,7 ,8 ,8 ,8 ,8 ,8 ,8 ,9 ,9 ,9 ,9 ,9 ,9 ,0 ,0 ,0 ,0 ,0 ,0 ,'a' ,'a' ,'a' ,'a' ,'a' ,'a' ,'b' ,'b' ,'b' ,'b' ,'b' ,'b' ,'c' ,'c' ,'c' ,'c' ,'c' ,'c' ,'d' ,'d' ,'d' ,'d' ,'d' ,'d' ,'e' ,'e' ,'e' ,'e' ,'e' ,'e' ,'f' ,'f' ,'f' ,'f' ,'f' ,'f' ,'f' ,'f');
		var randColor = new Array("#121F96", "#1C9613", "#961313", "#1E1E1E", "#444444")
		/*
		var un = Math.random() * 100; un = parseInt(un);
		var deux = Math.random() * 100; deux = parseInt(deux);
		var trois = Math.random() * 100; trois = parseInt(trois);
		var quatre = Math.random() * 100;quatre  = parseInt(quatre);
		var cinq = Math.random() * 100; cinq = parseInt(cinq);
		var six = Math.random() * 100; six = parseInt(cinq);
		color = '#' + randColor[un] + '' + randColor[deux] + '' + randColor[trois] + '' + randColor[quatre] + '' + randColor[cinq] + '' + randColor[six];
		*/
		var RN = Math.random() * 5; RN = parseInt(RN);
		color=cadre.style.backgroundColor;
		do
			{color = randColor[RN];}
		while(color == cadre.style.backgroundColor)

		cadre.style.backgroundColor = color;
}
