smooth scroll
$(function () {
'use strict';
$('.alphabetscroll').click(function (event) {
event.preventDefault();
$('html, body').animate({
scrollTop: $('[id="' + $.attr(this, 'href').substr(1) + '"]').offset().top
}, 500);
return false;
});
});