﻿// JavaScript Document
	 
function updateLayout() 
{
		var fontSize;
		currentWidth = window.innerWidth;
		if(currentWidth == 320)
		{
			fontSize = "40%";
		}
		else
		{
			fontSize = "60%";
		}
		document.body.style.fontSize = fontSize;
		window.scrollTo(0, 1);
}
