	$(document).ready(function(){
		
		$('.item_gallery_unstyled').addClass('item_gallery'); // adds new class name to maintain degradability
		$('.bigphoto_unstyled').addClass('bigphoto'); // adds new class name to maintain degradability
		
		$('ul.item_gallery').galleria({
			history   : true, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '.bigphoto', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
			}
		});
	});
