jQuery('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
target = jQuery(target);
if(this.hash !== '') {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top
}, 1000, 'swing', function () {
window.location.hash = target.selector;
});
}
});