hay we... por mas que intento no puedo :S
tengo esto:  
 Código HTML:
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>Prueba de jQuery</title>
    <script src="../jQuery/jQuery.js" type="text/javascript"></script>
        <script type="text/javascript">
$('#btn').click( function() {
     
     var destination = 0;
     $("html,body").stop().animate({
     scrollTop: destination
     },5000, 'easeInOutCubic');
     return false;                    
});
        </script>
    </head>
 <body>
    <a href="#btn"> Presioname! </a>
    <br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.
 <br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.
 <br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.
 <br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.
 <br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.
 </body>
</html>