|
- <script>
- $(document).ready(function(){
- $(".nav-icon").click(function(){
- $("body").toggleClass("overflow-hidden nav-open");
- });
-
-
- if ($("#start-intro-video").length) {
- document.getElementById('start-intro-video').getElementsByTagName("video")[0].addEventListener('ended',myHandler,false);
- function myHandler(e) {
- $("#start-intro-video").fadeTo(500,0);
- }
- }
- });
- </script>
|