(function() { var splash = document.getElementById('sv-splash'); if (sessionStorage.getItem('sv_splash_shown')) { splash.style.display = 'none'; } else { sessionStorage.setItem('sv_splash_shown', '1'); window.addEventListener('load', function() { setTimeout(function() { splash.style.opacity = '0'; setTimeout(function() { splash.style.display = 'none'; }, 600); }, 1000); }); } })();