$(document).ready(function(){
   $('a.toTop').click(function(event){
        event.preventDefault();
        $('html, body').animate({scrollTop:0},'slow')
   });
});

