if ($('.backtotop').length) {


         $('.backtotop').click(function(e){
             e.preventDefault();
             $('html, body').animate({scrollTop: '0px'}, 500);
         });

}

