﻿jQuery(document).ready(function() {
    try {
        //// Initialise the first and second carousel by class selector.
        //// Note that they use both the same configuration options (none in this case).
        jQuery('.first-and-second-carousel').jcarousel(
    {
    scroll:1
    });

        //// If you want to use a caoursel with different configuration options,
        //// you have to initialise it seperately.
        //// We do it by an id selector here.
        jQuery('#third-carousel').jcarousel({
            vertical: true,
            visible: 1
        });
    } catch (aa) {
    }
    try {
        //// Initialise the first and second carousel by class selector.
        //// Note that they use both the same configuration options (none in this case).
        jQuery('.first-and-second-carousel_single').jcarousel({
            scroll: 1
        });

        //// If you want to use a caoursel with different configuration options,
        //// you have to initialise it seperately.
        //// We do it by an id selector here.
        jQuery('#third-carousel').jcarousel({
            vertical: true,
            visible: 1
        });
    } catch (ab) {
    }
});
