//Accordion $(function() { $('#btn-search').on('click', function(){ $(this).toggleClass('is-active'); $('#select-form').slideToggle(); }); }); //Smooth Scroll $(function() { $('a[href^="#"]').not('[href="#"],.no-scroll').on('click', function() { var scrlID = $(this).attr('href'); $('html,body').animate({ scrollTop: (scrlID === '#top') ? 0 : $(scrlID).offset().top }, 1000); return false; }); }); //Copyright $(function() { if($('#copyright').length>0) { $('#copyright').find('span').html(new Date().getFullYear()); } });