// AUTOLOAD CODE BLOCK (MAY BE CHANGED OR REMOVED)
jQuery.noConflict();

jQuery(document).ready(function () {
	jQuery("a[rel^='lightbox']").slimbox({
		overlayOpacity: 0.6,
		easing: "easeOutElastic",
		captionAnimationDuration: 400,
		counterText: "Image {x} of {y}",
		closeKeys: [27, 70],
		nextKeys: [39, 83]
	}, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	});
});

