var t;			

	t = 1;



	function changerTaille(modif) {

		t = t + modif;

		document.getElementById("content").style.fontSize = t + "em";

	}
