s.onreadystatechange = s.onload = function()

in website/content/js/head.js [613:621]


        s.onreadystatechange = s.onload = function() {

            var state = s.readyState;

            if (!callback.done && (!state || /loaded|complete/.test(state))) {
                callback.done = true;
                callback();
            }
        };