$(document).ready(function() {

	$('img[class*="slimbox-"]').each(function(){
		var match = $(this).attr('class').match(/slimbox-([0-9xoriginal]{1,})/);
		
		if(match && $(this).attr('src').match(/\/[0-9]{1,}x[0-9]{1,}\//)){
			var res = match[1];
			if(res == 'original'){
				var path = $(this).attr('src').replace(/\/[0-9]{1,}x[0-9]{1,}\//, '/');
			}else{
				var path = $(this).attr('src').replace(/\/[0-9]{1,}x[0-9]{1,}\//, '/'+res+'/');
			}
			
			$(this).CMSslimbox({}, path);
			
			$(this).css({
				cursor: 'pointer'
			})
		}
	});
	
});