﻿/* Initiate all Jquery functions */

/* Initiate Lightbox
---------------------------------------------------------------------------------------------*/

$(function ()
{
    try
    {
		$('.lb-gallery a').lightBox();
	}
	catch (err)
    {
	}
});


/* Initiate Cycle
---------------------------------------------------------------------------------------------*/

$(document).ready(function ()
{
    try
    {
        $('.slideshow').cycle({
            fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        });
    }
    catch (err)
    {
    }
});
