	var t;			
	t = 1;
	function changerTaille(modif) {
		t = t + modif;
		document.getElementsByTagName("p")[0].style.fontSize = t + "em";		
	} 	
