function runSlimbox() {
    // AUTOLOAD CODE BLOCK (MAY BE CHANGED OR REMOVED)
        jQuery(function($) {
            $("a[rel^='lightbox']").slimbox({
                overlayOpacity: 0.8,
//                resizeDuration: 400,
//                overlayFadeDuration: 300,
//                imageFadeDuration: 1000,
                counterText: 'Obrázek' + " {x} / {y}"
                }, null, function(el) {
            	return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
            });
        });
    }
