// JavaScript Document

/* Menu déroulant */

function montre(id) {
  if (document.getElementById) {
	  document.getElementById(id).style.display="block";
	} else if (document.all) {
	  document.all[id].style.display="block !important";
	} else if (document.layers) {
	  document.layers[id].display="block !important";
	} } 

function cache(id) {
if (document.getElementById) {
		document.getElementById(id).style.display="none";
	} else if (document.all) {
		document.all[id].style.display="none !important";
	} else if (document.layers) {
		document.layers[id].display="none !important";
} }	

/* Changer la taille des caractères */

function changerTaille(modif) {
	t = t + modif ;
	$(".cnt *").css("font-size",t + "em");		
	$(".introchapo").css("font-size",t + "em");		
	$(".chapo").css("font-size",t + "em");
} 	


