I have this code:
<script type='text/javascript'>//<![CDATA[ 
    $(window).load(function() {
        $(".scroll").click(function(event) {
            event.preventDefault();
            //calculate destination place
            var dest = 0;
            if ($(this.hash).offset().top > $(document).height() - $(window).height()) {
                 dest = $(document).height() - $(window).height();
            } else {
                 dest = $(this.hash).offset().top;
            }
            //go to destination
            $('html,body').animate({ scrollTop: dest }, 1000, 'swing');
        });
    });//]]>
</script>
How should I do to get the scrolling to such #destination immediately when the page loads instead of as now when I have to click on a link first?
 
    