// on page load - scroll to div in page
$(window).load(function() {
$('html, body').animate({ scrollTop: $('div.scroll').offset().top }, 'slow');
 });
 
// on link click  - scroll to top of page
$(document).ready(function() {   
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });

});


// on page load - scroll to bottom of page
// $(window).load(function() {
// $("html, body").animate({ scrollTop: $(document).height() }, 1000);
// });

