jQuery(window).jbgcss("jbgallery.css");//customize url
jQuery(document).ready(function(){
	jQuery(".jbgallery").jbgallery({
		style:"centered",
		slideshow:true,
		menu:false,
		before:function(){
			$('.caption').hide();
		},
		after:function(){
			var _recup_caption = jQuery("#jbgallery_target").attr("alt");
			var	_caption=_recup_caption.replace(/::/,"<br/>");
			var _html = jQuery('<p>'+_caption+'</p>');
			jQuery('.caption').html(_html);
			$('.caption').show();		
		}
	});
});
