Slimbox.scanPage = function() {
	/* Group images together into galleries */
	var linkFilter = function(el) {
		return (this == el) || (this.className && (this.className.test(/^gallery-/i)) && (this.className == el.className));
	};

	$$("a").filter(function(el) {
		return el.className && el.className.test(/^gallery/i);
	}).slimbox({/* Put custom options here */}, null, linkFilter);
};
if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {
	window.addEvent("domready", Slimbox.scanPage);
}
