﻿/* Initiate all Jquery functions */

// Initiate Lightbox

$(function () {
    try {
        $('.lb-gallery a').lightBox();
    }
    catch (err) {
    }
});

// Initiate Simplethumbs

jQuery(document).ready(function () {
    try {
        $('#thumbnails').simplethumbs({ slideshow: '#imageview' });
    }
    catch (err) {
    }
});
