﻿/* Initiate all Jquery functions */

// Initiate Lightbox

$(function () {
    try {
        $('.lb-gallery a').lightBox();
    }
    catch (err) {
    }
});

// Initiate Cycle

$(document).ready(function () {
    try {
        $('.slideshow h2:first').fadeIn(2000, function() {
            $('.slideshow').cycle({
                fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
                autostop: 1,   // true to end slideshow after X transitions (where X == slide count)
                autostopCount: 1   // number of transitions (optionally used with autostop to define X)
            });
        });
    }
    catch (err) {
    }
});

$(document).ready(function () {
    try {
        $('.slideshow h5:first').fadeIn(4000, function () {
            $('.slideshow').cycle({
                fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
                autostop: 1,   // true to end slideshow after X transitions (where X == slide count)
                autostopCount: 1   // number of transitions (optionally used with autostop to define X)
            });
        });
    }
    catch (err) {
    }
});
