$(document).ready
(
	function()
	{
		$("a[rel^='lightbox']").slimbox
		(
			{
				counterText: "Bild {x} von {y}"
			},
			null,
			function(element)
			{
				return (this == element) || ((this.rel.length > 8) && (this.rel == element.rel));
			}
		);
	}
);
