<!--HTML-->
<!--anchor area-->
<div class="hash-offset" id="titleanchor"></div>
<h3>Title goes here</h3>
<!--link-->
<div class="floating-bar">
<a href="#titleanchor"><div class="floating-menu">link to title</div></a>
</div>
/*CSS*/
.hash-offset {
display: block;
position: relative;
top: -70px;
visibility: hidden;
}
$(".floating-bar a[href^='#']").click(function(e) {
e.preventDefault();
var position = $($(this).attr("href")).offset().top;
$("body, html").animate({
scrollTop: position
} /* speed */ );
});