var x = 1;
function suivant() {
	x = x == 6 ? 1 : x + 1;
	$("#img" + x).fadeIn(3000);
	$("#img" + (x == 1 ? 6 : x - 1)).fadeOut(3000);
};

