I am using this code to get my page to go back to the top of the page upon refresh. However, I want it to SLIDE to the top with the same smoothness that my accordion does. Check it out in FF - Don't try this in IE9, there is a bug there I haven't figured out yet (unless you just feel like fixing that for me!).
$(document).ready(function(){
$('html').animate({scrollTop:0}, 1);
$('body').animate({scrollTop:0}, 1);
});
You can see it here: http://imip.rvadv.com/index3.html
On a more philosophical note: Is this a stupid idea? Should I really care about this?