// Toolbox by BRX

function bigText() {
	//alert('la fonction bigText est bien appelee.');
	$$(
	   '.texte p',
	   '.texte table',
	   '.texte ul',
	   '.texte ol',
	   '.news p',
	   '.news table',
	   '.news ul',
	   '.news ol',
	   '.news span'
	).setStyle('font-size', '20px');
	$$(
	   '#rightcol .box_actus p',
	   '#rightcol .box_actus div',
	   '#rightcol .box_actus div span'
	).setStyle('font-size', '16px');
}


function smallText() {
	//alert('la fonction smallText est bien appelee.');
	$$(
	   '.texte p',
	   '.texte table',
	   '.texte ul',
	   '.texte ol',
	   '.news p',
	   '.news table',
	   '.news ul',
	   '.news ol',
	   '.news span'
	).setStyle('font-size', '14px');	
	$$(
	   '#rightcol .box_actus p',
	   '#rightcol .box_actus div',
	   '#rightcol .box_actus div span'
	).setStyle('font-size', '11px');
}


