(function () {
    function gotop() {
        map(function(x) {
                var span = x.lastChild;
                connect(x, 'onclick', function() { scrollTo(0, 0) });
            },
            getElementsByTagAndClassName('div', 'go-top')
            );
                        
    }

    connect(window, 'onload', gotop);
})();