window.addEvent('domready', function() {
		
	if($$('#thumbs_left .category-thumb')) {
		ct_allofem = $$('#thumbs_left .category-thumb');
		ct_allofem.each(function(element) {

			element.addEvent('click', function(e) {
				e.stop();
				
				fullurl = element.get('href').split('/');
				imgcat = fullurl[1];
				imgurl = fullurl[2];
				
				var req = new Request.HTML({
					method: 'get',
					url: 'categoryimg-process?cat='+imgcat+'&url='+imgurl,
					update: $('imgbox')
					//onComplete: function() { ci_div.set('html', 'info-'); infotextedit(); } 
				}).send();
			});
		});
	}
});

