$(function(){$('a[href^="#"]').click(function(){var href=$(this).attr('href');var target=$(href=='#'||href==''?'html':href);var position=target.offset().top;$('body,html').animate({scrollTop:position},400,'swing');return false;});var pagetopButton=$('.pagetop');pagetopButton.hide();$(window).scroll(function(){if($(this).scrollTop()>300){pagetopButton.fadeIn();}else{pagetopButton.fadeOut();}});$('.card').css('cursor','pointer');$('.card').click(function(){window.location.href=$(this).find('a').attr('href');});$('.accordion-toggle').click(function(){$(this).next();$(this).toggleClass('active-tab');$('.accordion-toggle + ul').not($(this).next());$('.accordion-toggle').not(jQuery(this)).removeClass('active-tab');});});