Correção de bug: jQuery animate scrolling para firefox

Isso vai funcionar no firefox

$('**html, body**').animate({scrollTop:offset}, time);

Isso não funcionará no firefox (mas funcionará na maioria dos outros navegadores)

$('**body**').animate({scrollTop:offset}, time);