;(function () { 'use strict'; // iPad and iPod detection var isiPad = function(){ return (navigator.platform.indexOf("iPad") != -1); }; var isiPhone = function(){ return ( (navigator.platform.indexOf("iPhone") != -1) || (navigator.platform.indexOf("iPod") != -1) ); }; var parallax = function() { $(window).stellar({ horizontalScrolling: false, hideDistantElements: false, responsive: true }); }; // Document on load. $(function(){ parallax(); }); }());