function hendysResize()
{
		//tweak layuot for smallest screens
		var tooSmall=1000;
		if (window.screen.availWidth<tooSmall)
		{
			document.getElementById("content").style.marginRight="20px";
		}
		return true;
}