hs.showCredits = false; hs.graphicsDir = "/js/highslide/graphics/"; hs.align = "center"; hs.transitions = ["expand", "crossfade"]; hs.outlineType = "rounded-white"; hs.fadeInOut = true; hs.dimmingOpacity = 0.75; $(document).ready(function(){ var $gallery = $('ul.gallery a:has(img)'); if($gallery.size()>1) { // галерею добавляем только если больше одной картинки hs.addSlideshow({ slideshowGroup: "gallery", interval: 5000, repeat: false, useControls: true, fixedControls: "fit", overlayOptions: { opacity: 0.75, position: "bottom center", hideOnMouseOut: true } }); } $gallery.each(function(){ this.onclick = function() { return hs.expand(this, {'slideshowGroup':'gallery'}); }; }); });