jQuery(document).ready(function($){
if($('section.tarifs_flexible').length||$('section.service_tarifs').length){
if($('section.service_tarifs').length){
$('a.btn_goto_tarifs').text('Смотреть тарифы');
}
$('div.btn_goto_tarifs').removeClass('hidden');
$('a.btn_goto_tarifs').click(function(e){
e.preventDefault();
if($('section.tarifs_flexible').length){
$top=$('section.tarifs_flexible').offset().top;
}else if($('section.service_tarifs').length){
$top=$('section.service_tarifs').offset().top;
}
$('html, body').animate({scrollTop: $top}, 500);
ym(93256126,'reachGoal', 'tarif_scroll_button');
});
}});