<!--
function loadPage()
{
  setTimeout(setFramePos, 0);
}

function setFramePos()
{
	currentWidth = 0;
	if (window.innerWidth != currentWidth)
	{
	  currentWidth = window.innerWidth;
	  var orient = currentWidth == 320 ? "profile" : "landscape";
	  document.body.setAttribute("orient", orient);
	  setTimeout(scrollTo, 100, 2000, 1);
	}
}
//-->