function startTyntApp() {
function documentIsReady() {
    var html = document.getElementsByTagName('html')[0];
    return !(!html || !document.getElementsByTagName('body')[0] || !html.innerHTML || html.innerHTML.toLowerCase().indexOf('</body>') == -1 || (typeof document.readyState == 'string' && document.readyState != 'complete')); // Overly cautious
};

function tyntLoader() {
    window.setTimeout(documentIsReady() ? startTyntApp : tyntLoader, 10);
};

tyntLoader();



