function largerText() {
	document.body.style.fontSize = '17px';
}
function normalText() {
	document.body.style.fontSize = '100%';
}
function smallerText() {
	document.body.style.fontSize = '13px';
}
