function setFont(dim) {
	switch(dim) {
		case 'small' :
			try {
				document.getElementById('pag_titolo').style.fontSize = '24px';
				document.getElementById('pag_testo').style.fontSize = '13px';
				document.getElementById('box_center_left').style.fontSize = '11px';
			} catch(err) {}
			try {
				document.getElementById('hp_titolo1').style.fontSize = '14px';
				document.getElementById('hp_titolo2').style.fontSize = '14px';
				document.getElementById('hp_testo').style.fontSize = '13px';
			} catch(err) {}
		break;
		case 'medium' :
			try {
				document.getElementById('pag_titolo').style.fontSize = '25px';
				document.getElementById('pag_testo').style.fontSize = '14px';
				document.getElementById('box_center_left').style.fontSize = '12px';
			} catch(err) {}
			try {
				document.getElementById('hp_titolo1').style.fontSize = '15px';
				document.getElementById('hp_titolo2').style.fontSize = '15px';
				document.getElementById('hp_testo').style.fontSize = '14px';
			} catch(err) {}
		break;
		case 'big' :
			try {
				document.getElementById('pag_titolo').style.fontSize = '26px';
				document.getElementById('pag_testo').style.fontSize = '15px';
				document.getElementById('box_center_left').style.fontSize = '13px';
			} catch(err) {}
			try {
				document.getElementById('hp_titolo1').style.fontSize = '16px';
				document.getElementById('hp_titolo2').style.fontSize = '16px';
				document.getElementById('hp_testo').style.fontSize = '15px';
			} catch(err) {}
		break;
	}
}
