function galleriaInit() {
    jQuery('.galleria').galleria({
            //data_source: galleria_data,
			clicknext: true, // helper for making the image clickable,
			max_scale_ratio: 1,
			image_crop: 'width'
        });

        jQuery('.galleria').show();

}

function slideshowInit() {

    jQuery('.slideshow').galleria({
        clicknext: false // needed in order for slide links to work
        , thumbnails: false
        , show_info: false
        , show_counter: false
        , thumb_crop: false
//        , max_scale_ratio: 1
//        , image_crop: 'width'
    });

    jQuery('.slideshow').show();
}

function homepageSlideshowInit() {

    jQuery('.homepage_slideshow').galleria({
        clicknext: false // needed in order for slide links to work
        , autoplay: true
        , thumbnails: false
        , show_info: false
        , show_counter: false
        , show_imagenav: false
        , thumb_crop: false
//        , max_scale_ratio: 1
//        , image_crop: 'width'
    });

    jQuery('.homepage_slideshow').show();
}

jQuery(document).ready(function() {
    galleriaInit();
    slideshowInit();
    homepageSlideshowInit();
});

jQuery(document).bind('galleriaLoad', function () {
    galleriaInit();
    slideshowInit();
    homepageSlideshowInit();
});
