﻿document.observe("dom:loaded", function () {
    window.setInterval(function () {
        var elm = $("SkyIn");

        if (elm) {
            if (document.documentElement.scrollTop > 200) {
                elm.setStyle({ "top": document.documentElement.scrollTop + "px" });
            } else {
                if (elm.style.top != "200px") elm.setStyle({ "top": "200px" });
            }
        }
    }, 200);
});
