// JavaScript Document $(document).ready(function(){ $('.animated-icon').click(function(){ $(this).toggleClass('open'); }); $('.header').height($(window).height()); window.addEventListener('scroll', function(){ $('.background-image').css("top", -window.pageYOffset / 20 + "px"); }, true); setTimeout(function () { $("#cookiebar").fadeIn(200); }, 4000); $("#closeCookieConsent, .cookieConsentOK").click(function() { $("#cookieConsent").fadeOut(200); }); });