jQuery(function($) 
{ 
	if(/Safari\/(312|125|100)/.test(navigator.userAgent)) 
	{
		return;
	}
	$('ul.gallery').addClass('jsgallery'); 
	$('ul.jsgallery').galleria({
	history   : false,
	clickNext : false,
	insert : '#photo',
	onImage: function(image,caption,thumb){ 
		//#check if thumbnail indicates that a large version of this pic is available
		var large = thumb.attr('longdesc');
		if(large)
		{
			//#if so, link to it and show it in a lightbox
			image.wrap('<a href="' + large + '"></a>');
			image.parent('a').slimbox();
			//#show caption explaining to click to see larger version
			caption.css('display','block');
		}
		else
		{
			caption.hide();
		}
	}
	});
}); 
