

function simple_galleria_init()
{
	window_height = 160;
	window_width = 260;
	var show_thumbs = ( $('.image_item').length > 1);
	$('#images_holder').css("visibility","visible");
//	$('.images').css("height", window_height);
//	$('.images').css("width", window_width);

//	Galleria.loadTheme("js/galleria/themes/classic/galleria.classic.js");
	// draw simple gallery
	$('.images').galleria(	 {
		 height: window_height,
		 width: window_width,
		 autoplay: 2500,
		 thumbnails: true,
		 image_crop: true, // crop all images to fit
		 thumb_crop: true, // crop all thumbnails to fit
		 image_pan: true, // image moves inside container effect
		 transition: 'fade', // crossfade photos
		 transition_speed: 200, // slow down the crossfade
		 popup_links: true,
		 image_position: '10%',
		 extend: function() {
			 this.bind(Galleria.IMAGE, function(e) {
				$(e.imageTarget).css('cursor','pointer').click(this.proxy(function() {
					this.openLightbox();
				}));
			});
		}
	});

}
