/* --------------------------------------------------------------- CUSTOM SCRIPT FOR CHURCH TEMPLATE Author : SURJITH S M URI : http://theemforest.net/user/surjithctly Updated : 26 May 2015 --------------------------------------------------------------- */ $(document).ready(function() { /* -------------------- EVENT CAROUSEL ----------------------- */ if(jQuery().owlCarousel) { $('.owl-carousel').owlCarousel({ loop:true, margin:10, nav:true, navText: [ "", "" ], responsive:{ 0:{ items:1 }, 550:{ items:2 }, 768:{ items:3 }, 992:{ items:4 } } }) $('.owl-carousel2').owlCarousel({ loop:true, margin:10, nav:true, navText: false, responsive:{ 0:{ items:1 } } }) } /* -------------------- IMAGE GALLERY ----------------------- */ if(jQuery().fancybox) { $('.fancybox').fancybox(); } /* -------------------- SHRINK HEADER ----------------------- */ $(function(){ var shrinkHeader = 300; $(window).scroll(function() { var scroll = getCurrentScroll(); if ( scroll >= shrinkHeader ) { $('.navbar').addClass('shrink'); } else { $('.navbar').removeClass('shrink'); } }); function getCurrentScroll() { return window.pageYOffset || document.documentElement.scrollTop; } }); /* -------------------- SUBSCRIBE FORM ----------------------- */ $('#subscribeForm').ketchup().submit(function() { if ($(this).ketchup('isValid')) { var action = $(this).attr('action'); $.ajax({ url: action, type: 'POST', data: { email: $('#address').val() }, success: function(data){ $('#result').html(data); }, error: function() { $('#result').html('Sorry, an error occurred.'); } }); } return false; }); }); /*End Document Ready*/