﻿/* Initiate all Jquery functions */

// Initiate Lightbox

$(function() {
    $('.lb-gallery a').lightBox();
});

// Initiate Cycle

$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    });
});
