window.addEvent('domready', function() {
  
	$$(document.links).filter(function(el) {
		return el.rel && el.href && el.rel.test(/^lightbox/i) && el.firstChild && el.firstChild.src;
	}).slimbox({
			loop: true,
			initialWidth: 0,
			initialHeight: 0,
			overlayOpacity: 0.6,
			overlayFadeDuration: 200,
			resizeDuration: 0,
			resizeTransition: Fx.Transitions.Elastic.easeOut,
			counterText: "This is image <strong>{x}</strong> on a total of <strong>{y}</strong>",
			previousKeys: [37, 80, 16],
			nextKeys: [39, 78, 17],
		
	},  function(el) {
		return [el.href,//el.firstChild.src.replace(/_[mts]\.(\w+)$/, ".$1"),
			(el.title || el.firstChild.alt) + '<br/>Use the Arrow Keys &lt;- and -&gt;'];
	})


});
