var slideSpeed = 20;var slideInterval = 0;var currentPage = null;var currentDialog = null;var currentWidth = 0;var currentHash = location.hash;var hashPrefix = "#_";var pageHistory = [];var newPageCount = 0;var checkTimer;addEventListener("load", function(event){    setTimeout(preloadImages, 0);    setTimeout(checkOrientAndLocation, 0);    checkTimer = setInterval(checkOrientAndLocation, 300);}, false);scrollTo(0, 1);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);    }}function preloadImages(){    var preloader = document.createElement("div");    preloader.id = "preloader";    document.body.appendChild(preloader);}