addEventListener("load", function(event)
{
    setTimeout(function()
    {
        checkOrient();
        setInterval(checkOrient, 300);
    }, 0);

}, false);

function checkOrient()
{
	if (window.innerWidth > 320)
	{
      	setTimeout(changePage("../480/html/menu.html"),300);		     
	}	
	setTimeout(scrollTo, 0, 0, 1);
}
  
function changePage(urlLink)
{
	document.location.href=urlLink;
}