$(".top_btn").click(function () {  
  elementClick = $(this).attr("href"); 
  destination = $(elementClick).offset().top; 
  $("body,html").animate({ scrollTop: destination}, 700 ); 
  return false; 
});
