jQuery(function($) {
	$('#random-explorer li').biggerlink();
	$('#galleria').galleria({
		extend: function() {
			this.bind(Galleria.IMAGE, function(e) {
				$(e.imageTarget).css('cursor', 'pointer').click(this.proxy(function() {
					this.openLightbox();
				}));
			});
		}
	});
});

