﻿/* Initiate all Jquery functions */

// Initiate Lightbox

$(function () {
    try {
		$('.lb-gallery a').lightBox();
	}
	catch (err) {
	}
});

// Initiate Cycle

$(document).ready(function () {
    try {
        $('.slideshow')
		    .after('<ul class="nav-slideshow">')
            .cycle({
                fx: 'scrollLeft', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
                timeout: '8000',
                pager: '.nav-slideshow',
                pause: '1',
                cleartypeNoBg: true
            });
    }
    catch (err) {
    }
});
