(function() {

var currentWidth = 0;
var currentHash = location.hash;

// *************************************************************************************************

addEventListener("load", function(event)
{
    setTimeout(checkOrientAndLocation, 0);
}, false);
    

function checkOrientAndLocation()
{
    if (window.innerWidth != currentWidth)
    {   
        currentWidth = window.innerWidth;
        var orient = currentWidth == 320 ? "profile" : "landscape";
        document.body.setAttribute("orient", orient);
        setTimeout(scrollTo, 100, 0, 1);
    }

    if (location.hash != currentHash)
    {
        var pageId = location.hash.substr(hashPrefix.length)
        iui.showPageById(pageId);
    }
}

})();
