$(document).ready(function(){

  /* pageTop action */
  $('.btnpagetop').removeAttr('href');
  $('.btnpagetop').click(function () {
    var targetOffset = $('#wrapper').offset().top;
    $('html,body').animate({ scrollTop: targetOffset }
                          ,{ duration: 600, queue: true}
                          );
  });
});

