// JavaScript Document
var bError = false

function setupGallery() {
	try {
		jQuery(function($) {
			$('.gallery_demo_unstyled').addClass('gallery'); // adds new class name to maintain degradability
			
			$('ul.gallery').galleria({
				history   : false, // activates the history object for bookmarking, back-button etc.
				clickNext : true, // helper for making the image clickable
				insert    : '#main_image', // the containing selector for our main image
				onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
					// add a title for the clickable image
					image.attr('title','Next image >>');
				}
			});
		});
	} catch(e) {
		bError = true;
		
	}
}