$(window).load(function() { // makes sure the whole site is loaded "use strict"; //------------------------------------------------------------------------ // PRELOADER SCRIPT //------------------------------------------------------------------------ $('#preloader').delay(400).fadeOut('slow'); // will fade out the white DIV that covers the website. $('#preloader .inner').fadeOut(); // will first fade out the loading animation }) $(document).ready(function(){ "use strict"; // //------------------------------------------------------------------------ // // VIDEO BACKGROUND SETTINGS // //------------------------------------------------------------------------ // $(function() { // var BV = new $.BigVideo({container: $('.block-video-bg'), useFlashForFirefox:false}); // BV.init(); // if(navigator.userAgent.match(/iPhone|iPad|iPod|Android|BlackBerry|IEMobile/i)) { // BV.show('images/video_gag.jpg'); // } else{ // if (!!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0) { // BV.show('video_bg.ogv', {doLoop:true, ambient:true}); // } else{ // BV.show('video_bg.mp4', {doLoop:true, ambient:true, altSource:'video_bg.ogv'}); // } // BV.getPlayer().on('loadedmetadata', function(){ // $('#big-video-wrap video').fadeIn('slow'); // }); // } // }); //------------------------------------------------------------------------ // FULL HEIGHT SECTION SCRIPT //------------------------------------------------------------------------ $("#minimal-intro").css("min-height",$( window ).height()); $( window ).resize(function() { $("#minimal-intro").css("min-height",$( window ).height()); }) });