if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {

	window.addEvent('domready', function() {
		$$('a.enlarge').slimbox({
			/* Put custom options here */
			resizeDuration: 0,
			captionAnimationDuration : 0,
			initialWidth : 800, 
			initialHeight : 600, 
			counterText : "Foto {x} van {y}",
			offsetY : 40
			}, 
			(function(el) {
				// return [el.href, el.title];
				return [el.href, el.getNext('div.metadata').get('html')];
			}), 
			function(el) {
				return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
			}
		);
	});
}

