$("body").on('click', '[href*="#"]', function (e) {
var fixed_offset = 0; // отступ сверху
$('html,body').stop().animate({scrollTop: $(this.hash).offset().top - fixed_offset}, 1000);
e.preventDefault();
});
$(function(){
function abc2(n) {
n += "";
n = new Array(4 - n.length % 3).join("U") + n;
return n.replace(/([0-9U]{3})/g, "$1.").replace(/U/g, "");
}
$("#price").click(function(){
var sum=0; // начальное значение можно указать любое
$('#price :checked').each(function(){
sum+=parseInt($(this).val());
});
abc2(sum);
$('.catalog-item__price-total span').text(sum + ' руб.');
});
});