$(".smooth-scroll-link").click(function() {
that = this;
var href = $.attr(that, 'href');
if (href != '#' && href != '') {
var target = $(href);
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
}
});

