jQuery(function($){$('.insert-video').attr('playsinline','true').attr('width','auto').attr('height','auto');});jQuery(function($){$(window).scroll(function(){$('.target-slide-in').each(function(){var position=$(this).offset().top;var scroll=$(window).scrollTop();var windowHeight=$(window).height();if(scroll>position-windowHeight+200){$(this).addClass('slide-in');}else{$(this).removeClass('slide-in');}});$('.target-zoom-in').each(function(){var position=$(this).offset().top;var scroll=$(window).scrollTop();var windowHeight=$(window).height();if(scroll>position-windowHeight+200){$(this).addClass('zoom-in');}else{$(this).removeClass('zoom-in');}});$('.target-fade-in').each(function(){var position=$(this).offset().top;var scroll=$(window).scrollTop();var windowHeight=$(window).height();if(scroll>position-windowHeight+200){$(this).addClass('fade-in');}else{$(this).removeClass('fade-in');}});$('.target-jump-in').each(function(){var position=$(this).offset().top;var scroll=$(window).scrollTop();var windowHeight=$(window).height();if(scroll>position-windowHeight+200){$(this).addClass('jump-in');}else{$(this).removeClass('jump-in');}});});});